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
I was logging the request parameters using a @app.listen(request) decorator but at this point the request.body is not loaded yet.
I changed it for @app.listen("response")
The text was updated successfully, but these errors were encountered:
Semantically, the signal request should provide a full usable request. But we need a way to intercept the request without loading the body, and the plan is to add a headers signal that is sent once headers are fully parsed (so one can check auth and such at this moment, without dealing with the body).
I don't really know if it is a bug or a feature.
I was logging the request parameters using a
@app.listen(request)
decorator but at this point the request.body is not loaded yet.I changed it for
@app.listen("response")
The text was updated successfully, but these errors were encountered: