Merge remote-tracking branch 'origin/jetty-9.4.x' into jetty-10.0.x
This commit is contained in:
commit
5b1b7b0a57
|
@ -47,14 +47,15 @@ public class CustomRequestLogTest
|
|||
Server _server;
|
||||
LocalConnector _connector;
|
||||
BlockingQueue<String> _entries = new BlockingArrayQueue<>();
|
||||
String _tmpDir = System.getProperty("java.io.tmpdir");
|
||||
String _tmpDir;
|
||||
|
||||
@BeforeEach
|
||||
public void before()
|
||||
public void before() throws Exception
|
||||
{
|
||||
_server = new Server();
|
||||
_connector = new LocalConnector(_server);
|
||||
_server.addConnector(_connector);
|
||||
_tmpDir = new File(System.getProperty("java.io.tmpdir")).getCanonicalPath();
|
||||
}
|
||||
|
||||
void testHandlerServerStart(String formatString) throws Exception
|
||||
|
|
Loading…
Reference in New Issue