I have some logic that returns from a Workflow `run` function after 2 steps if it doesn't need to pr
I have some logic that returns from a Workflow
run function after 2 steps if it doesn't need to progress further -- not an error, just a situation where it doesn't need to continue. I'm not throwing an error, just returning an object with some data, but for some reason it seems like this is still showing in the workflow's worker logs as an "Error" (but it shows up correctly in the Workflow logs as "Completed" -- no error). Is there something specific I need to be returning from the run function so it doesn't register as an error/Exception in the Worker?