This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new a247bff3ea Log debug info after request has been set so useful data is
reported
a247bff3ea is described below
commit a247bff3eae77c965dc3463b9d98ebe6a22b866f
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 ac0bece148..26c28e9a94 100644
--- a/java/org/apache/catalina/core/AsyncContextImpl.java
+++ b/java/org/apache/catalina/core/AsyncContextImpl.java
@@ -77,10 +77,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]