Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Ludovic Orban <[email protected]>
  • Loading branch information
lorban committed Jul 15, 2024
1 parent 926544c commit 21d8903
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import java.util.concurrent.TimeUnit;

import org.eclipse.jetty.io.ByteBufferPool;
import org.eclipse.jetty.io.LogarithmicArrayByteBufferPool;
import org.eclipse.jetty.io.LogarithmicArrayByteBufferPool.LogarithmicRetainablePool;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.ServerConnector;
Expand Down Expand Up @@ -64,6 +65,7 @@ public void before() throws Exception
{
_client = new WebSocketClient();
_server = new Server();
_server.addBean(new LogarithmicArrayByteBufferPool(-1, -1, -1, 0, 0, 0,0));
_connector = new ServerConnector(_server);
_server.addConnector(_connector);

Expand Down

0 comments on commit 21d8903

Please sign in to comment.