Skip to content

Commit

Permalink
more cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhee17 committed Nov 4, 2022
1 parent 38eab8e commit 90e89e3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ void defaultStartStopExecutor() {
threads.add(server.stop().thenApply(unused -> Thread.currentThread()).join());
threads.add(server.start().thenApply(unused -> Thread.currentThread()).join());

threads.forEach(t -> assertThat(t.getName()).startsWith("globalEventExecutor"));
threads.forEach(t -> assertThat(t.getName()).startsWith("startstop-support"));
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ public void applyTo(Builder builder) {
"pool");
builder.allowBlockingCallsInside("com.linecorp.armeria.testing.server.ServiceRequestContextCaptor$2",
"serve");
// jetty server is started up from GlobalEventExecutor
builder.allowBlockingCallsInside("com.linecorp.armeria.server.jetty.JettyService",
"start");

// graphql
builder.allowBlockingCallsInside("graphql.i18n.I18n", "i18n");
Expand Down

0 comments on commit 90e89e3

Please sign in to comment.