Can you call context.waitUntil() multiple times?
After handling a request, I have to save something to KV and make a
My code looks like this
Will the runtime wait for all the promises passed to
Or will the runtime stop when the first promise resolves?
fetch call to some other service. The order in which they execute does not matter.My code looks like this
Will the runtime wait for all the promises passed to
context.waitUntil?Or will the runtime stop when the first promise resolves?