I have some incomplete executions, but I cannot see how to re-run them. Clicking Run Once as per this closed thread does not show any way to view or run the incomplete list:
Thanks
I have some incomplete executions, but I cannot see how to re-run them. Clicking Run Once as per this closed thread does not show any way to view or run the incomplete list:
Thanks
Hi @Laurence_Cope ,
There are different approaches depending on the scenario type, maybe you could look at:
Could you also add a screenshot of your scenario or anything that could help?
BR,
PBI
OK, here is a description of why it failed.
I was thinking of raising this as a new post, but I wanted to investigate first just in case its my error. What I have done in the meantime is remove the part where it fails, so it will work, and re-process the failed ones in the queue. Instead I have manually performed my actions now after going through all the failed ones to see what they were.
Its the Asana v2 module to create a task. It uses a webhook to pull in incoming data from my email client. In my email client if I type in a comment “asana” or “asana today” it will trigger a a Webhook which Make monitors, and Make pulls in the email data. I have been doing it for years on the old Asana module. I switched to the new Asana module a few weeks back and recreated the setup. I thought it was working but today notice there is one condition that is not.
I have a conditional in the “Due” date field which basically looks at the comments and if the word “today” is in it then to set the Due to “now” (using Make’s date now field). The conditional and the now field has always worked in the old Asana module. So If I enter “asana” in my email comments it works. But if I use “asana today” it does not.
Now I get an error:
Validation failed for 1 parameter(s).
- Prohibited value in parameter 'due'.
So the due date is not working like it used to.
Conditional is:
if(contains(8. comment: body;today);now;if(19. Value>0;addDays(now;19. Value);))
So if comment body contains “today” due date is “now”. Otherwise f there are numbers in the comment body (e.g. 2) then add those days onto now.
So I am wondering if there is now an issue with the now field in the new Asana module, or if I have made a mistake. I wanted to reprocess my data now I removed the conditional so I dont miss these actions, but I have manually done it now.
But I cant see anyway to reprocess the queue.
Oh, I forgot to say, “19. Value” is a text parser which looks for numbers. Its possible that may be causing the issue, as that part is new also. I used to get the number on my comment a different way, but changed it to this.