Replies: 3 comments 6 replies
-
You can also add a Timer, and thus continue the rest of the workflow, after sending a response, in the background. |
Beta Was this translation helpful? Give feedback.
4 replies
-
I think what you need is this method: HttpBackgroundJob.ExecuteAfterEndOfRequestAsync. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Maybe HttpRequestTask need a TimeOut field like:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a couple of workflows that take quite a bit of time to complete, and what I notice is that the request will not complete till the workflow has finished. Using a http response block does not work. the only way to end the request and continue running the workflow is to insert a signal event or custom event block.
However this means I will either need to trigger the signal via the url or trigger the custom event using a background task.
What are my alternatives?
Beta Was this translation helpful? Give feedback.
All reactions