This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new e6133bf19b Log debug info after request has been set so useful data is
reported
e6133bf19b is described below
commit e6133bf19b17b9b966213e07afb4b7f487b5f423
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 908832a5b4..ed0b1daa53 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]