waitUntil
i am using sveltekit and deploying to Cloudflare Pages. In a Pages Function, I am curious what happens if I don't await an async operation and return to the user. For instance, I have an endpoint which deletes images from Cloudflare Images, but I'd rather not make the user wait for that to happen, so I simply don't await the Promise.all that calls the Cloudflare API. It seems to be working great, but is this problematic?
