We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usage of HTTP/2 for multiple concurrent POST requests causes 400 errors on nginx 1.18.0, switching to HTTP/1.1 fixes everything.
Reproduces even without concurrent requests with the following form body:
$data = \file_get_contents('https://github.com/danog/rpc-db/releases/download/latest/core.json'); $finfo = new finfo(FILEINFO_MIME_TYPE); $bodyNew = new Form(); $bodyNew->addStream("0", BufferedContent::fromString($data, $finfo->buffer($data)), \basename($href)); $newPage = new Request(Pusher::PUSH_FILE, 'POST'); $newPage->setBody($bodyNew);
The text was updated successfully, but these errors were encountered:
May or may not be caused by an issue in the recent GOAWAY fixes
Sorry, something went wrong.
No branches or pull requests
Usage of HTTP/2 for multiple concurrent POST requests causes 400 errors on nginx 1.18.0, switching to HTTP/1.1 fixes everything.
Reproduces even without concurrent requests with the following form body:
The text was updated successfully, but these errors were encountered: