Skip to content

Commit

Permalink
Remove unnecessary configuration of idle timeout
Browse files Browse the repository at this point in the history
Fixes gh-38960
  • Loading branch information
wilkinsona committed Jan 3, 2024
1 parent 7216d2b commit 00cf1a6
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ private Server createServer(InetSocketAddress address) {
private AbstractConnector createConnector(InetSocketAddress address, Server server) {
HttpConfiguration httpConfiguration = new HttpConfiguration();
httpConfiguration.setSendServerVersion(false);
httpConfiguration.setIdleTimeout(30000);
List<ConnectionFactory> connectionFactories = new ArrayList<>();
connectionFactories.add(new HttpConnectionFactory(httpConfiguration));
if (getHttp2() != null && getHttp2().isEnabled()) {
Expand Down

0 comments on commit 00cf1a6

Please sign in to comment.