Hello everyone, I want to know how much time duration workflow can stay running? like if I set 5 del
Hello everyone, I want to know how much time duration workflow can stay running? like if I set 5 delay for one year will it stay up for 5 years?
(instance.in_finite_state) Instance reached a finite state, cannot send events to it





(instance.in_finite_state) Instance reached a finite state, cannot send events to itawait step.do("my-debug-step", async () => {
return 'this is how I log, and it will show up as the result of this step'
})
const myResult = await step.do() // this step returns something that we want to log
await step.do("my-debug-step", async () => {
if(myResult) {
return `You can also log results ${JSON.stringify(myResult)}`
}
else {
return `Result is not defined`
}
})