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'm using the echo modules to send the same GitHub webhook request to two backends that needs to receive it. I spit them using echo_subrequest_async, but when I do there is no request body. I have tried using both -b $request_body and -f $request_body_file with the same effect:
I have attempted to mitigate this issue by adding echo_sleep 0.001 and echo_blocking_sleep 0.001 in order to force the body to be loaded, and it does appear to slightly decrease the instances of missing body in Webhook request.
I'm using the
echo
modules to send the same GitHub webhook request to two backends that needs to receive it. I spit them usingecho_subrequest_async
, but when I do there is no request body. I have tried using both-b $request_body
and-f $request_body_file
with the same effect:When using
-f $request_body_file
I managed to catch this in Nginx errors:Which indicates that the request body is indeed missing, but as far as I know it is not, since GitHub does send it.
This suggests a bug in the
echo
module.The text was updated successfully, but these errors were encountered: