I see, that could explain the issues we're seeing then. Why may they share the same isolate when fro
I see, that could explain the issues we're seeing then. Why may they share the same isolate when from the same device/client?



ReadableStreamBYOBReader.readAtLeast(minBytes, bufferArrayBufferView) as perReturns a promise with the next available chunk of data read into a passed-in buffer. The promise will not resolve until at least minBytes have been read.
minBytes available? A little bit of sanity would say that it would resolve with the buffer partially filled with the available bytes, rather than rejecting, but that contradicts the absolute statement "The promise will not resolve until at least minBytes have been read". Can someone confirm and perhaps update the docs?
Route pattern should not have query parameters [code: 10022]
https://developers.cloudflare.com/workers/configuration/routing/routes/
Route patterns may not contain infix wildcards or query parameters. For example, neitherexample.com/*.jpgnorexample.com/?foo=*are valid route patterns.
ReadableStreamBYOBReader.readAtLeast(minBytes, bufferArrayBufferView)minBytes Inbound requests to your Worker. Cloudflare does not bill for subrequests you make from your Worker.example.com/*.jpgexample.com/?foo=*