Merge pull request #10391 from eclipse/jetty-12.0.x-10385-GzipDefaultServletTest

Issue #10385 - fix NPE in GzipDefaultServletTest
This commit is contained in:
Lachlan 2023-08-25 15:46:24 +10:00 committed by GitHub
commit 9e0cd71b31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -76,6 +76,7 @@ public class GzipDefaultServletTest extends AbstractGzipTest
gzipHandler.setIncludedMethods("POST", "WIBBLE", "GET", "HEAD");
server = new Server();
server.setStopTimeout(1000);
LocalConnector localConnector = new LocalConnector(server);
server.addConnector(localConnector);