Suppress expected stack

This commit is contained in:
Greg Wilkins 2022-12-22 09:24:40 +11:00
parent 81b5fa61cf
commit 2a5fd34716
1 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ import java.util.concurrent.atomic.AtomicReference;
import org.awaitility.Awaitility;
import org.eclipse.jetty.http.HttpHeader;
import org.eclipse.jetty.http.HttpTester;
import org.eclipse.jetty.io.AbstractConnection;
import org.eclipse.jetty.io.ArrayRetainableByteBufferPool;
import org.eclipse.jetty.io.Connection;
import org.eclipse.jetty.io.Content;
@ -967,7 +968,7 @@ public abstract class HttpServerTestBase extends HttpServerTestFixture
{
startServer(new DataHandler());
try (StacklessLogging ignored = new StacklessLogging(Server.class))
try (StacklessLogging ignored = new StacklessLogging(AbstractConnection.class))
{
try (Socket client = newSocket(_serverURI.getHost(), _serverURI.getPort()))
{