I have a workflow that errors out usually due to external issue with the far side (or some other causes). So if any errors occurs then it will restart the same process.
I had already put my entire workflow into trycatch block… its working properly if errors occurs at first time then it goes in catch block … if error occur in catch block its throwing me an error. and my process is getting stopped.
First pls find the reason which causes this exception
Then if it is not really solvable then for the above question
Use try catch and keep your set of sequence or activities inside that Try block and just have a log message in catch block
Don’t keep the same set of activities again in catch block
Now Right click that entire try catch activity and click on CUT
Then use a RETRY SCOPE and inside the action part paste the above copied try catch
Don’t use any condition in retry scope. Let it be blank
And mention the number of retries u want to be there in retry scope property
There is no limit
But keeping to infinite definitely not a good practice because if the bot fails for thousand times will it be fine for you to wait for 1000 times
So have it to certain number which is a ideal case
Cheers @Vinit_Mhatre