-
-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
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
All DELETE requests are failling when using HTTP2 #253
Comments
Thanks for reporting! Can you provide steps to reproduce? We often need a reproducible example, e.g. some code that allows someone else to recreate your problem by just copying and pasting it. If it involves more than a couple of different file, create a new repository on GitHub and add a link to that. I'm not sure what the problem is but it would be awesome if you'd try a fix! |
@mcollina sure 😄 I was trying to debug it for a while and just stopped. Next monday I'll try to create a sample repo with it and share with you over here 😄 |
@mcollina The browser always sends
|
Is this documented somewhere? is there a repro I can check? |
Sorry, my fault, looks like it's only Safari problem.
This example works in Chrome, but fails in Safari (Version 16.4 (18615.1.26.110.1)). Console output for Safari
Console output for Chrome
// server
const Fastify = require('fastify');
const server = Fastify();
server.register(require('@fastify/cors'), {
origin: "*",
methods: ["DELETE"]
});
server.register(require('@fastify/http-proxy'), {
upstream: 'http://localhost:3000/api2',
prefix: '/api', // optional
http2: false, // optional
// NOTE: server fix for Safari
// replyOptions: {
// rewriteRequestHeaders(originalReq, headers) {
// const rewrittenHeaders = { ...headers }
// // undici issue https://github.com/nodejs/undici/issues/2046
// if (originalReq.method === 'DELETE') {
// rewrittenHeaders['content-length'] = undefined
// }
// return rewrittenHeaders
// },
// },
});
server.route({
method: 'DELETE',
path: '/api2',
handler(request, reply) {
reply.send({ status: 'deleted' });
},
});
server.listen({ port: 3000 }); <!-- client -->
<html>
<head></head>
<body>
<script>
window.onload = function onLoad() {
fetch('http://localhost:3000/api', { method: 'DELETE' })
.then((result) => {
console.info('status', result.status)
return result.json()
})
.then((error) => {
console.error('error', error.message)
})
}
</script>
</body>
</html> |
This matches our expectations... I guess no one uses Safari. I think we should just remove the Alternatively we should just document this oddity, but I think it's better to have the patch for everyone. I think this should be the default implementation of @annahassel @delucca Would you like to send a PR along those lines? |
I have a kinda similar issue, all DELETE requests failing with an error: {
"statusCode":500,
"code":"FST_REPLY_FROM_INTERNAL_SERVER_ERROR",
"error":"Internal Server Error",
"message":"write after end"
} GET, POST, PATCH, PUT methods work as intended. Reproduce: import fastify from 'fastify';
import proxy from '@fastify/http-proxy';
const proxyServer = fastify();
proxyServer.register(proxy, {
upstream: 'http://localhost:3001/example2',
prefix: '/example1',
http2: true,
});
proxyServer.listen({ port: 3000 });
const http2Server = fastify({ http2: true });
http2Server.route({
method: ['GET', 'PATCH', 'POST', 'PUT', 'DELETE'],
url: '/example2',
handler(_, reply) {
reply.send({ status: 'you got it!' });
},
});
http2Server.listen({ port: 3001 }); Curl: curl --request DELETE --url http://localhost:3000/example1 # fail
curl --request POST --url http://localhost:3000/example1 # ok Is it even correct to use a proxy this way? PS: The upstream on which I received this behaviour supports versions |
Does |
Nope, here's two traces of POST and DELETE requests from reproduce above:
|
I currently do not have much time to debug this. However a PR would be nice. |
I've had a look at this and it seems to be caused by this call to The DELETE request does succeed without that call to Update: It seems that is indeed only GET and DELETE for which |
Prerequisites
Fastify version
3.x.x
Plugin version
7.1.0
Node.js version
16.x.x
Operating system
Linux
Operating system version (i.e. 20.04, 11.3, 10)
Fedora 35
Description
When running any
DELETE
request without a body with HTTP2 we got the following error:If we run the same request with HTTP1, the error doesn't happen
Even if we use
http2: false
on the proxy options, we still got that error if the request was executed with HTTP2Also, seems like Undici doesn't support HTTP2 yet, maybe that's the reason?
Steps to Reproduce
DELETE
endpointDELETE
endpoint using HTTP2Expected Behavior
The request should be executed as expected
The text was updated successfully, but these errors were encountered: