You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
✘ [ERROR] Uncaught (in response) Error: Promise will never complete.
✘ [ERROR] Uncaught (in promise) Error: Cannot perform I/O on behalf of a different request. I/O objects (such as streams, request/response bodies, and others) created in the context of one request handler cannot be accessed from a different request's handler. This is a limitation of Cloudflare Workers which allows us to improve overall performance.
These pop up in our production log many times daily, we had more than 1800 errors in the last 7 days like this:
Finally I was able to reproduce it consistently locally by instantly spamming the freshly started worker with the same SSR page request. (20 request for the same page), but unfortunately the error log contains nothing more than those messages.
After I wrapped all the <Icon> in a custom MyIcon.client.vue component the issue was gone.
I think the problem will be upstream in Iconify but I haven't started to investigate more deeply yet.
Hello!
I've been after these errors for months now.
The script will never generate a response
✘ [ERROR] Uncaught (in response) Error: Promise will never complete.
✘ [ERROR] Uncaught (in promise) Error: Cannot perform I/O on behalf of a different request. I/O objects (such as streams, request/response bodies, and others) created in the context of one request handler cannot be accessed from a different request's handler. This is a limitation of Cloudflare Workers which allows us to improve overall performance.
These pop up in our production log many times daily, we had more than 1800 errors in the last 7 days like this:
Finally I was able to reproduce it consistently locally by instantly spamming the freshly started worker with the same SSR page request. (20 request for the same page), but unfortunately the error log contains nothing more than those messages.
After I wrapped all the
<Icon>
in a customMyIcon.client.vue
component the issue was gone.I think the problem will be upstream in Iconify but I haven't started to investigate more deeply yet.
More info:
The text was updated successfully, but these errors were encountered: