Skip to content

Commit

Permalink
Merge branch '3.0.x' into 3.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Nov 2, 2023
2 parents 7611ce1 + e5c8723 commit 683d791
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ private void initialize() throws WebServerException {

// Unlike Jetty, all Tomcat threads are daemon threads. We create a
// blocking non-daemon to stop immediate shutdown
startDaemonAwaitThread();
startNonDaemonAwaitThread();
}
catch (Exception ex) {
stopSilently();
Expand Down Expand Up @@ -189,7 +189,7 @@ private void rethrowDeferredStartupExceptions() throws Exception {
}
}

private void startDaemonAwaitThread() {
private void startNonDaemonAwaitThread() {
Thread awaitThread = new Thread("container-" + (containerCounter.get())) {

@Override
Expand Down

0 comments on commit 683d791

Please sign in to comment.