You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/transport-h2/src/main/java/org/apache/axis2/transport/h2/integration/moshi/UndertowAxis2BufferIntegration.java
+53-18Lines changed: 53 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -93,37 +93,54 @@ private static class WildFlyResourceCache {
93
93
"io.undertow.servlet.XnioWorker", // Test compatibility - current expected name
94
94
"io.undertow.xnio.worker", // Alternative WildFly name
95
95
"org.wildfly.undertow.worker", // WildFly-specific name
96
-
"undertow.xnio.worker"// Generic name
96
+
"undertow.xnio.worker", // Generic name
97
+
"io.undertow.XnioWorker", // Capitalized version
98
+
"org.xnio.XnioWorker", // Direct XNIO
99
+
"undertow.worker", // Simple name
100
+
"wildfly.undertow.xnio.worker"// WildFly 32 specific
97
101
};
98
102
99
103
String[] poolNames = {
100
104
"io.undertow.servlet.BufferPool", // Test compatibility - current expected name
101
105
"io.undertow.buffer-pool", // Alternative WildFly name
102
106
"org.wildfly.undertow.buffer.pool", // WildFly-specific name
103
-
"undertow.buffer.pool"// Generic name
107
+
"undertow.buffer.pool", // Generic name
108
+
"io.undertow.BufferPool", // Capitalized version
109
+
"org.xnio.Pool", // Direct XNIO
110
+
"undertow.pool", // Simple name
111
+
"wildfly.undertow.buffer.pool"// WildFly 32 specific
104
112
};
105
113
106
-
// Search for XNIO Worker
114
+
// Search for XNIO Worker with detailed logging
115
+
log.info("WildFly HTTP/2 Integration: Searching for XNIO Worker in servlet context...");
0 commit comments