Issue in retry Scope

Hello @SynergiBot,

Here are two ways you can ensure Retry Scope works as expected:

  1. Ensure an application exception is raised / thrown (inside your Login Workflow) in cases where retry is expected. In this case you need not use any activity in the condition section of the retry scope. Also ensure you invoke the kill process workflow before invoking the Login Workflow.
  2. You can output a boolean variable from the Login Workflow that is True in case of Login Success & False in case of Login Failure. And pass it to a Is True activity from the Microsoft.Activities.Expressions package, in the condition section of the Retry Scope.

Hope that helps ! Kudos :slight_smile:

Thanks & Regards,
Nithin

1 Like