This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push:
new 791a821e7d Log debug info after request has been set so useful data is
reported
791a821e7d is described below
commit 791a821e7d411728470b0ce510969c5273cb02db
Author: Mark Thomas <[email protected]>
AuthorDate: Fri Jun 21 10:33:42 2024 +0100
Log debug info after request has been set so useful data is reported
---
java/org/apache/catalina/core/AsyncContextImpl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/org/apache/catalina/core/AsyncContextImpl.java
b/java/org/apache/catalina/core/AsyncContextImpl.java
index 2cb3958120..b1b773fdc6 100644
--- a/java/org/apache/catalina/core/AsyncContextImpl.java
+++ b/java/org/apache/catalina/core/AsyncContextImpl.java
@@ -78,10 +78,10 @@ public class AsyncContextImpl implements AsyncContext,
AsyncContextCallback {
private final AtomicBoolean hasOnErrorReturned = new AtomicBoolean(false);
public AsyncContextImpl(Request request) {
+ this.request = request;
if (log.isTraceEnabled()) {
logDebug("Constructor");
}
- this.request = request;
}
@Override
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]