You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2017/07/31 14:07:42 UTC

[Bug 52009] NPE exception in org.apache.catalina.connector.CoyoteAdapter.service

https://bz.apache.org/bugzilla/show_bug.cgi?id=52009

Donald <dk...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|FIXED                       |---
             Status|RESOLVED                    |REOPENED

--- Comment #14 from Donald <dk...@gmail.com> ---
I think this issue is reintroduced in tomcat 7.0.68.
I see in
http://svn.apache.org/repos/asf/tomcat/tc7.0.x/tags/TOMCAT_7_0_67/java/org/apache/catalina/connector/CoyoteAdapter.java:
{code}
if (postParseSuccess &&
                        request.getMappingData().context != null) {
                    // Log only if processing was invoked.
                    // If postParseRequest() failed, it has already logged it.
                    // If context is null this was the start of a comet request
                    // that failed and has already been logged.
                    ((Context) request.getMappingData().context).logAccess(
{code}
While in
http://svn.apache.org/repos/asf/tomcat/tc7.0.x/tags/TOMCAT_7_0_68/java/org/apache/catalina/connector/CoyoteAdapter.java:
{code}
   if (postParseSuccess) {
                        // Log only if processing was invoked.
                        // If postParseRequest() failed, it has already logged
it.
                        // If context is null this was the start of a comet
request
                        // that failed and has already been logged.
                        ((Context) request.getMappingData().context).logAccess(
{code}
I can not find out where this has been changed from svn logs :-(
Do you want me to log a new ticket for this?

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org