Skip to content

Commit

Permalink
don't validate log completion thread local before a connection is opened
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhee17 committed Aug 9, 2024
1 parent 36c094c commit 610f83d
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 610f83d

Please sign in to comment.