Currently, all calls to bodyAll set async to false, because parts of this are not fully implemented:
|
// bool async_process_body_handle_for_bodyAll(JSContext *cx, uint32_t handle, JS::HandleObject self, |
We should resolve this issue and enable asynchronous bodyAll. This may affect stale-with revalidate scenarios, where reading the body may be blocking the response. We should try to validate this hypothesis.
Currently, all calls to
bodyAllsetasyncto false, because parts of this are not fully implemented:js-compute-runtime/runtime/fastly/builtins/fetch/request-response.cpp
Line 1569 in f5afe9c
We should resolve this issue and enable asynchronous
bodyAll. This may affect stale-with revalidate scenarios, where reading the body may be blocking the response. We should try to validate this hypothesis.