Commit 5375681f authored by Andy Wilkinson's avatar Andy Wilkinson

Merge branch '2.1.x'

Closes gh-17120
parents 405b4ad4 df9a6a0f
......@@ -23,6 +23,7 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.concurrent.TimeUnit;
import io.undertow.Handlers;
import io.undertow.Undertow;
......@@ -156,10 +157,14 @@ public class UndertowReactiveWebServerFactory extends AbstractReactiveWebServerF
try {
accessLogReceiver.close();
worker.shutdown();
worker.awaitTermination(30, TimeUnit.SECONDS);
}
catch (IOException ex) {
throw new IllegalStateException(ex);
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
}
};
}
catch (IOException ex) {
......
......@@ -28,6 +28,7 @@ import java.util.Collections;
import java.util.EventListener;
import java.util.List;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import javax.servlet.ServletContainerInitializer;
import javax.servlet.ServletContext;
......@@ -652,10 +653,14 @@ public class UndertowServletWebServerFactory extends AbstractServletWebServerFac
try {
this.accessLogReceiver.close();
this.worker.shutdown();
this.worker.awaitTermination(30, TimeUnit.SECONDS);
}
catch (IOException ex) {
throw new IllegalStateException(ex);
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment