This is an automated email from the ASF dual-hosted git repository.

robertlazarski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git


The following commit(s) were added to refs/heads/master by this push:
     new dd0e4cf540 AXIS2-6099 add better Wildfly dep verification
dd0e4cf540 is described below

commit dd0e4cf54009b6121c45ff644f1afa3123653de1
Author: Robert Lazarski <[email protected]>
AuthorDate: Wed Dec 10 11:23:56 2025 -1000

    AXIS2-6099 add better Wildfly dep verification
---
 .../transport/h2/integration/moshi/UndertowAxis2BufferIntegration.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git 
a/modules/transport-h2/src/main/java/org/apache/axis2/transport/h2/integration/moshi/UndertowAxis2BufferIntegration.java
 
b/modules/transport-h2/src/main/java/org/apache/axis2/transport/h2/integration/moshi/UndertowAxis2BufferIntegration.java
index 04d86db978..943461da6d 100644
--- 
a/modules/transport-h2/src/main/java/org/apache/axis2/transport/h2/integration/moshi/UndertowAxis2BufferIntegration.java
+++ 
b/modules/transport-h2/src/main/java/org/apache/axis2/transport/h2/integration/moshi/UndertowAxis2BufferIntegration.java
@@ -84,9 +84,11 @@ public class UndertowAxis2BufferIntegration {
         final String discoveryLog;
 
         WildFlyResourceCache(ServletContext servletContext) {
+            log.info("WildFly HTTP/2 Integration: CONSTRUCTOR START - 
Beginning resource discovery");
             StringBuilder discovery = new StringBuilder("WildFly resource 
discovery: ");
             XnioWorker worker = null;
             Pool<ByteBuffer> pool = null;
+            log.info("WildFly HTTP/2 Integration: Variables initialized, 
proceeding to search");
 
             // Try multiple possible WildFly attribute names (test-compatible 
first)
             String[] workerNames = {
@@ -111,6 +113,7 @@ public class UndertowAxis2BufferIntegration {
                 "wildfly.undertow.buffer.pool"     // WildFly 32 specific
             };
 
+            log.info("WildFly HTTP/2 Integration: Arrays initialized 
successfully, starting searches");
             // Search for XNIO Worker with detailed logging
             log.info("WildFly HTTP/2 Integration: Searching for XNIO Worker in 
servlet context...");
             for (String name : workerNames) {

Reply via email to