Skip to content

Commit dd0e4cf

Browse files
AXIS2-6099 add better Wildfly dep verification
1 parent 2a07bb5 commit dd0e4cf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

modules/transport-h2/src/main/java/org/apache/axis2/transport/h2/integration/moshi/UndertowAxis2BufferIntegration.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,11 @@ private static class WildFlyResourceCache {
8484
final String discoveryLog;
8585

8686
WildFlyResourceCache(ServletContext servletContext) {
87+
log.info("WildFly HTTP/2 Integration: CONSTRUCTOR START - Beginning resource discovery");
8788
StringBuilder discovery = new StringBuilder("WildFly resource discovery: ");
8889
XnioWorker worker = null;
8990
Pool<ByteBuffer> pool = null;
91+
log.info("WildFly HTTP/2 Integration: Variables initialized, proceeding to search");
9092

9193
// Try multiple possible WildFly attribute names (test-compatible first)
9294
String[] workerNames = {
@@ -111,6 +113,7 @@ private static class WildFlyResourceCache {
111113
"wildfly.undertow.buffer.pool" // WildFly 32 specific
112114
};
113115

116+
log.info("WildFly HTTP/2 Integration: Arrays initialized successfully, starting searches");
114117
// Search for XNIO Worker with detailed logging
115118
log.info("WildFly HTTP/2 Integration: Searching for XNIO Worker in servlet context...");
116119
for (String name : workerNames) {

0 commit comments

Comments
 (0)