Scenario: Break hangs when used in a catch. This does not error or produce an exception it simply hangs while trying to execute.
Steps to reproduce:
For this error you need a foreach with a try and catch where the break is in the catch.
For example:
try
for each item in array
check false(btest)
catch
checkpoint exception
break
Current Behavior: The process hangs.
Expected Behavior: The for each should break out and carry on executing the rest of the flow.
Studio/Robot/Orchestrator Version: 2017.1
Last stable behavior: If the break is outside of the try catch it executes correctly. However this does mean that we have to do a larger try catch or other methodology that is inefficient.
Last stable version:This was not tested in any other versions
OS Version: windows 7
Others if Relevant: (workflow, logs, .net version, service pack, etc):
We have a workaround for this but i thought it worth logging as this would seem to be a bug.
Thanks