From 610f83d813751be4f4269139790a80df754c0e53 Mon Sep 17 00:00:00 2001 From: jrhee17 Date: Fri, 9 Aug 2024 11:06:43 +0900 Subject: [PATCH] don't validate log completion thread local before a connection is opened --- .../com/linecorp/armeria/client/ContextCancellationTest.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/test/java/com/linecorp/armeria/client/ContextCancellationTest.java b/core/src/test/java/com/linecorp/armeria/client/ContextCancellationTest.java index 04b9b341b78..4424599e7ac 100644 --- a/core/src/test/java/com/linecorp/armeria/client/ContextCancellationTest.java +++ b/core/src/test/java/com/linecorp/armeria/client/ContextCancellationTest.java @@ -111,8 +111,6 @@ void cancel_beforeDelegate(TestInfo testInfo) { .hasRootCause(t); assertThat(connListener.opened()).isEqualTo(0); assertThat(requests).doesNotContain(testInfo.getDisplayName()); - // don't validate the thread since we haven't started with event loop scheduling yet - validateCallbackChecks(null); } } @@ -149,8 +147,6 @@ void cancel_beforeConnection(TestInfo testInfo) { .hasCauseInstanceOf(UnprocessedRequestException.class) .hasRootCause(t); assertThat(requests).doesNotContain(testInfo.getDisplayName()); - // don't validate the thread since we haven't started with event loop scheduling yet - validateCallbackChecks(null); } }