โ08-13-2025 02:15 AM
Hi,
Recently we've encountered strange Workato behavior. In a loop, we're calling recipe functions asynchronously, store the job references in a list and outside of the loop we pass that list to the "Wait for async calls to complete" action. We want the recipe to wait for all the child jobs to complete and continue parent processing when all finished.
The weird behavior is that even when all the jobs completed, the parent recipe job is stuck in processing state:
Here's the implementation in the parent process:
What's even more interesting is that if we set the timeout limit to e.g. 1min (line in example) and wait it out, the parent process is still stuck in processing. Here's the screenshot from yesterday right after I canceled the execution (look at the duration time):
That's definitely a 1min timeout not working.
Does anyone had similar issues and came up with a solution for that?
Thanks
Solved! Go to Solution.
โ08-13-2025 02:43 AM
Hi @dawidleman,
I guess you are running the recipe using a test job, right?
Could you please try starting the recipe in normal mode (not in test mode) and check it again? Let me know if you still face the same issue after that.
Thank you...!
Monday
Hi @gprao13,
Repeat Job in Workato allows you to re-run a previously executed job using the same trigger data that was processed earlier. It performs all the recipe actions again based on the data from that job, without fetching new data from the source application.
For example, suppose you tested a recipe earlier and later modified the recipe (say, updated the second step) and saved it.
If you now repeat that previously tested job, Workato will run the latest saved version of the recipe โ not the older version that was used.
In real-time integrations, we usually receive data from source applications. When testing or debugging a recipe, itโs not best practice to request the source system to resend the same data repeatedly.
In such cases, the Repeat Job feature is very useful โ it lets you reuse the same trigger data from a previous job and re-run the workflow through all subsequent steps. This helps in:
Troubleshooting failed jobs
Testing modifications without triggering new data
Validating mapping or logic changes
Ensuring end-to-end success after fixing errors
hope you got some clarity, if not please let me know, will discuss further.
Thanks,
yesterday
If your recipe includes long-running actions, itโs essential that the recipe is in an active state when you attempt to repeat a previous job. Repeating a job while the recipe is inactive can lead to the same error or failure that occurred during testing.
โ08-15-2025 11:49 AM
From the docs: https://docs.workato.com/en/recipes/testing.html
---
CANNOT RUN LONG ACTIONS IN TEST MODE
Long actions require dedicated workers to periodically check if the action is complete. This is not available in test mode. Testing a recipe that contains a long action may cause the job to stall in the Processing status.
---
Can definitely be frustrating at times to deal with...
 
					
				
				
			
		
