Hi all, I configured Jetty Server to time out by configuring 'maxIdleTime' on a Connector that we register with the server.The timeout works but I don't like the response that is being returned when the timeout occurs (curl output) -> * Connected to localhost (::1) port 58272 (#0)> GET /metrics HTTP/1.1> User-Agent: curl/7.37.1> Host: localhost:58272> Accept: */*>* Empty reply from server* Connection #0 to host localhost left intactcurl: (52) Empty reply from server This is an example of using curl. It basically returns an empty reply which is confusing and not very helpful for the user.Instead I would want to return a 504 response code so we know a timeout occurs and not another error. Is there a way to do this without having to write code ourselves in the Handler?I'm currently using Jetty 8.1.8 in embedded mode.
Thanks!Kristof
_______________________________________________ jetty-users mailing list [email protected] To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://dev.eclipse.org/mailman/listinfo/jetty-users
