Skip to main content

In my current process, I’m interacting with 3 -4 APIs that occasionally fail due to network issues or service timeouts. When this happens, the bot tries to retry the action, but sometimes it leads to delays or multiple failed attempts. I’m trying to find ways to handle these intermittent failures more gracefully without affecting the overall process flow. I want to make sure the bot can handle these situations efficiently without too many retries or causing unnecessary delays.

@NewTushitha, curious to know if/how you’re using Try-Catch blocks in your current processes? Bundling them with retry mechanisms and failure logging can help handle failures more gracefully


@NewTushitha  check your wait for action to complete while calling a API because is there is an error while calling a API it will wait for that much time you have mention in below box. So you can provide the sufficient time and make sure handling a code in try-catch block.

 


Thankyou for your reply will give it try and check if that works 


@NewTushitha the above solution work for you or are you still facing a issue?


Reply