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
fix: prevent proxy timeout by removing duplicate headers in config file
When using request file mode (-r), headers were being passed through both
the request file and the options.headers config option, causing:
- Connection: keep-alive bypassing parseRequestFile filtering, exhausting proxy pool
- Content-Length being fixed at original value, mismatching injected body size
- Other intentionally-skipped headers (Proxy-Connection etc.) being re-added
Now headers are only passed via the request file, matching command-line behavior.
0 commit comments