We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5b9ce0 commit 46cf365Copy full SHA for 46cf365
common/src/main/java/org/openshift/ping/common/server/UndertowServer.java
@@ -75,6 +75,11 @@ private Handler(Server server) {
75
}
76
77
public void handleRequest(HttpServerExchange exchange) throws Exception {
78
+ if(exchange.isInIoThread()) {
79
+ exchange.dispatch(this);
80
+ return;
81
+ }
82
+
83
exchange.startBlocking();
84
String clusterName = exchange.getRequestHeaders().getFirst(CLUSTER_NAME);
85
Channel channel = server.getChannel(clusterName);
0 commit comments