Your worker called response.clone()
I keep getting the following error despite not calling
response.clone()
at all:
Your worker called response.clone(), but did not read the body of both clones. This is wasteful, as it forces the system to buffer the entire response body in memory, rather than streaming it through. This may cause your worker to be unexpectedly terminated for going over the memory limit. If you only meant to copy the response headers and metadata (e.g. in order to be able to modify them), use new Response(response.body, response)
instead.
This is my API call (in astro)1 Reply
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View