Service bindings - do I need to use waitUntil() in this scenario?
Suppose I have a service binding from worker A to worker B. Worker A is triggered over HTTP, and hands off to worker B to do a task e.g. update a DB record or call a remote API.
Worker A does NOT need to know the result of worker B's task - it simply kicks it off. Worker A is then free to terminate. In this scenario, do I need to use
Thank you in advance.
Worker A does NOT need to know the result of worker B's task - it simply kicks it off. Worker A is then free to terminate. In this scenario, do I need to use
waitUntil() in worker A or not? Struggling to understand when waitUntil() is and is not required.Thank you in advance.
