buildbot success in ASF Buildbot on tomcat-trunk

2015-06-09 Thread buildbot
The Buildbot has detected a restored build on builder tomcat-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-trunk/builds/1357 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: silvanus_ubuntu Build Reason: The AnyBranchSch

[Bug 58015] servlet-api.jar from WAR files not being excluded

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58015 --- Comment #2 from Mark Thomas --- That was fun. I found a bunch of edge case bugs in the web application class loader in this area that should all now be fixed in trunk. It is getting late here so I'll back-port the fixes to earlier version

svn commit: r1684550 - /tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoaderBase.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 22:42:29 2015 New Revision: 1684550 URL: http://svn.apache.org/r1684550 Log: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=58015 Delegate and filter() should be used consistently everywhere delegation is possible to ensure consistent behaviour of the class load

svn commit: r1684549 - /tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoaderBase.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 22:38:06 2015 New Revision: 1684549 URL: http://svn.apache.org/r1684549 Log: Fix a bug that prevented filter() form working correctly (it only returned true for classes in sub-packages of the listed packaged, but not classes located in the packages themselves) Mod

buildbot exception in ASF Buildbot on tomcat-trunk

2015-06-09 Thread buildbot
The Buildbot has detected a build exception on builder tomcat-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-trunk/builds/1356 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: silvanus_ubuntu Build Reason: The AnyBranchSc

buildbot success in ASF Buildbot on tomcat-trunk

2015-06-09 Thread buildbot
The Buildbot has detected a restored build on builder tomcat-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-trunk/builds/1355 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: silvanus_ubuntu Build Reason: The AnyBranchSch

svn commit: r1684529 - /tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoaderBase.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 20:51:40 2015 New Revision: 1684529 URL: http://svn.apache.org/r1684529 Log: Add JASPIC API classes to the classes for which the web application class loader will always delegate first. Modified: tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoaderBas

svn commit: r1684527 - /tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoaderBase.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 20:50:31 2015 New Revision: 1684527 URL: http://svn.apache.org/r1684527 Log: Add javax.websocket.* to the classes for which the web application class loader will always delegate first (so the classes provided by Tomcat cannot be overridden). Modified: tomcat/t

svn commit: r1684526 - /tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoaderBase.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 20:49:08 2015 New Revision: 1684526 URL: http://svn.apache.org/r1684526 Log: The validate() method is unnecessary. Test 0.2 in loadClass(String, boolean) already ensures that Java SE classes can not be overridden and does so in a way that doesn't require a list of p

svn commit: r1684516 - /tomcat/trunk/java/org/apache/coyote/http2/Http2UpgradeHandler.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 20:16:50 2015 New Revision: 1684516 URL: http://svn.apache.org/r1684516 Log: Fix regression in r1684505 Modified: tomcat/trunk/java/org/apache/coyote/http2/Http2UpgradeHandler.java Modified: tomcat/trunk/java/org/apache/coyote/http2/Http2UpgradeHandler.java URL

[Bug 58015] servlet-api.jar from WAR files not being excluded

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58015 --- Comment #1 from Mark Thomas --- I haven't tested this (yet) but the code to prevent loading of Servlet API classes from the web app is still present. jarsToSkip is completely unrelated to this feature. -- You are receiving this mail beca

[Bug 58015] New: servlet-api.jar from WAR files not being excluded

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58015 Bug ID: 58015 Summary: servlet-api.jar from WAR files not being excluded Product: Tomcat 8 Version: 8.0.23 Hardware: PC OS: Linux Status: NEW Severity:

svn commit: r1684508 - /tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_5_1.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 19:40:46 2015 New Revision: 1684508 URL: http://svn.apache.org/r1684508 Log: Check stream IDs do not go backwards Modified: tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_5_1.java Modified: tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_

svn commit: r1684507 - /tomcat/trunk/java/org/apache/coyote/http2/Http2UpgradeHandler.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 19:39:22 2015 New Revision: 1684507 URL: http://svn.apache.org/r1684507 Log: Need to update the max remote stream when a new one is created Modified: tomcat/trunk/java/org/apache/coyote/http2/Http2UpgradeHandler.java Modified: tomcat/trunk/java/org/apache/coyot

svn commit: r1684505 - in /tomcat/trunk: java/org/apache/coyote/http2/Http2Parser.java java/org/apache/coyote/http2/Http2UpgradeHandler.java java/org/apache/coyote/http2/LocalStrings.properties test/o

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 19:26:08 2015 New Revision: 1684505 URL: http://svn.apache.org/r1684505 Log: Differentiate between retrieving an existing stream and creating a new one. Start to add the 5.1.1 tests Modified: tomcat/trunk/java/org/apache/coyote/http2/Http2Parser.java tomcat/

svn commit: r1684503 - /tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_4_2.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 19:19:01 2015 New Revision: 1684503 URL: http://svn.apache.org/r1684503 Log: Correct name (copy/paste error) Modified: tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_4_2.java Modified: tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_4_2.j

buildbot success in ASF Buildbot on tomcat-trunk

2015-06-09 Thread buildbot
The Buildbot has detected a restored build on builder tomcat-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-trunk/builds/1353 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: silvanus_ubuntu Build Reason: The AnyBranchSch

svn commit: r1684476 - /tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_4_3.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 16:58:21 2015 New Revision: 1684476 URL: http://svn.apache.org/r1684476 Log: Remove unnecessary write. The previous ping triggers the failure and - depending on the system - the server may drop the connection before part 2 is written. If that happens it triggers a

[Bug 56576] Websocket support

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=56576 Corey Puffalt changed: What|Removed |Added CC||cpj...@yeroc.ca --- Comment #1 from Co

[GitHub] tomcat pull request: Add JASPIC API (JSR 196) to build process

2015-06-09 Thread markt-asf
Github user markt-asf commented on the pull request: https://github.com/apache/tomcat/pull/21#issuecomment-110393102 1) I haven't reviewed the build.xml changes since I don't want to start building this JAR until the API is correct. 2) Patch was incomplete. Applied along with addit

buildbot failure in ASF Buildbot on tomcat-trunk

2015-06-09 Thread buildbot
The Buildbot has detected a new failure on builder tomcat-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-trunk/builds/1350 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: silvanus_ubuntu Build Reason: The AnyBranchSchedu

svn commit: r1684441 - /tomcat/trunk/java/javax/security/auth/message/config/AuthConfigFactory.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 14:49:41 2015 New Revision: 1684441 URL: http://svn.apache.org/r1684441 Log: Fix line lengths and imports Modified: tomcat/trunk/java/javax/security/auth/message/config/AuthConfigFactory.java Modified: tomcat/trunk/java/javax/security/auth/message/config/AuthC

svn commit: r1684440 - /tomcat/trunk/java/javax/security/auth/message/config/AuthConfigFactory.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 14:45:24 2015 New Revision: 1684440 URL: http://svn.apache.org/r1684440 Log: Revert original line lengths patch - it included refactoring that did not pass review Modified: tomcat/trunk/java/javax/security/auth/message/config/AuthConfigFactory.java Modified:

svn commit: r1684439 - in /tomcat/trunk/java/javax/security/auth/message: callback/GroupPrincipalCallback.java callback/PasswordValidationCallback.java callback/TrustStoreCallback.java config/ServerAu

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 14:41:05 2015 New Revision: 1684439 URL: http://svn.apache.org/r1684439 Log: Line lengths missed in a previous commit. Modified: tomcat/trunk/java/javax/security/auth/message/callback/GroupPrincipalCallback.java tomcat/trunk/java/javax/security/auth/messag

svn commit: r1684438 - in /tomcat/trunk/java/javax/security/auth/message: ./ callback/ config/ module/

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 14:37:53 2015 New Revision: 1684438 URL: http://svn.apache.org/r1684438 Log: Line lengths Patch by fjodorver Modified: tomcat/trunk/java/javax/security/auth/message/ClientAuth.java tomcat/trunk/java/javax/security/auth/message/MessagePolicy.java tomcat/t

svn commit: r1684433 - /tomcat/trunk/java/javax/security/auth/message/callback/

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 14:17:19 2015 New Revision: 1684433 URL: http://svn.apache.org/r1684433 Log: Remove some additional blank lines Modified: tomcat/trunk/java/javax/security/auth/message/callback/CallerPrincipalCallback.java tomcat/trunk/java/javax/security/auth/message/call

svn commit: r1684431 - in /tomcat/trunk/java/javax/security/auth/message: ./ callback/ config/ module/

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 14:15:34 2015 New Revision: 1684431 URL: http://svn.apache.org/r1684431 Log: Remove @version from JASPIC API Patch by fjodorver Modified: tomcat/trunk/java/javax/security/auth/message/AuthException.java tomcat/trunk/java/javax/security/auth/message/AuthStatu

svn commit: r1684421 - in /tomcat/trunk: java/org/apache/coyote/http2/Http2Parser.java java/org/apache/coyote/http2/StreamStateMachine.java test/org/apache/coyote/http2/TestHttp2Section_5_1.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 13:43:15 2015 New Revision: 1684421 URL: http://svn.apache.org/r1684421 Log: Enable ignored test now handling for stream errors has been implemented. More clarifications around sub-states for closed streams (these need some unit tests) Modified: tomcat/trunk/ja

svn commit: r1684417 - /tomcat/trunk/java/org/apache/coyote/http2/FrameType.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 13:35:54 2015 New Revision: 1684417 URL: http://svn.apache.org/r1684417 Log: Errors on stream zero are always connection errors Modified: tomcat/trunk/java/org/apache/coyote/http2/FrameType.java Modified: tomcat/trunk/java/org/apache/coyote/http2/FrameType.java

svn commit: r1684416 - /tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_4_2.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 13:35:30 2015 New Revision: 1684416 URL: http://svn.apache.org/r1684416 Log: Fix comment Modified: tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_4_2.java Modified: tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_4_2.java URL: http://svn

svn commit: r1684414 - /tomcat/trunk/java/org/apache/coyote/http2/Http2UpgradeHandler.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 13:26:54 2015 New Revision: 1684414 URL: http://svn.apache.org/r1684414 Log: Fix failing tests after merging checks Modified: tomcat/trunk/java/org/apache/coyote/http2/Http2UpgradeHandler.java Modified: tomcat/trunk/java/org/apache/coyote/http2/Http2UpgradeHand

svn commit: r1684411 - in /tomcat/trunk/java/org/apache/coyote/http2: FrameType.java Http2Parser.java Http2UpgradeHandler.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 13:01:01 2015 New Revision: 1684411 URL: http://svn.apache.org/r1684411 Log: Merge check methods Modified: tomcat/trunk/java/org/apache/coyote/http2/FrameType.java tomcat/trunk/java/org/apache/coyote/http2/Http2Parser.java tomcat/trunk/java/org/apache/co

[Bug 57977] The original class loader isn't re-bound to the thread in PersistentValve.invoke()

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57977 Mark Thomas changed: What|Removed |Added Resolution|--- |FIXED Status|NEW

svn commit: r1684394 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/catalina/valves/PersistentValve.java webapps/docs/changelog.xml

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 11:56:52 2015 New Revision: 1684394 URL: http://svn.apache.org/r1684394 Log: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=57977 Ensure web application class loader is unbound. Includes: - only bind/unbind if the valve is attached to a Host or Engine - narrow sc

[Bug 57977] The original class loader isn't re-bound to the thread in PersistentValve.invoke()

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57977 --- Comment #6 from Remy Maucherat --- Very good point about the host, thanks. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-

svn commit: r1684385 - in /tomcat/tc8.0.x/trunk: ./ java/org/apache/catalina/valves/PersistentValve.java webapps/docs/changelog.xml

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 11:42:52 2015 New Revision: 1684385 URL: http://svn.apache.org/r1684385 Log: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=57977 Ensure web application class loader is unbound. Includes: - only bind/unbind if the valve is attached to a Host or Engine - narrow sc

svn commit: r1684383 - /tomcat/trunk/java/org/apache/catalina/valves/PersistentValve.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 11:39:22 2015 New Revision: 1684383 URL: http://svn.apache.org/r1684383 Log: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=57977 Ensure web application class loader is unbound. Includes: - only bind/unbind if the valve is attached to a Host or Engine - narrow sc

[Bug 57977] The original class loader isn't re-bound to the thread in PersistentValve.invoke()

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57977 --- Comment #5 from Mark Thomas --- At the Host level the context class loaders are set in the StandardHostValve which is the basic Valve - i.e. always the last one in the chain. Therefore the clsss loader switching will be required for Hosts a

[Bug 58010] Class file are not getting compiled with debuginfo while setting classdebuginfo in jasper ant task

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58010 Mark Thomas changed: What|Removed |Added Resolution|--- |INVALID Status|NEW

Re: HTTP2 parsing and error handling

2015-06-09 Thread Rémy Maucherat
2015-06-09 11:53 GMT+02:00 Konstantin Kolinko : > 2015-06-08 15:37 GMT+03:00 Mark Thomas : > > All, > > > > I'm not particularly happy with the current error handling (based around > > Http2Exception) and as I work my way through the spec in detail I am > > coming across cases that are becoming in

[Bug 58009] Trying to forward request to newly created file results in 404 "The requested resource is not available."

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58009 --- Comment #3 from Mark Thomas --- 'Not found' results are cached as well. I suspect the application code is checking that the file exists, discovering that it doesn't (which is cached), ading the file (outside of the WebResources impl) and th

[Bug 57966] Tomcat 8 (8.0.22/ 8.0.23) + Java 8.0.45 failed to compile the JSPs - java.io.IOException: tmpFile.renameTo(classFile) failed

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57966 Mark Thomas changed: What|Removed |Added Resolution|--- |INVALID Status|NEEDINFO

[Bug 57265] Tomcat 8 hiden behind NGINX fails to send file when using NIO connector

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57265 Mark Thomas changed: What|Removed |Added Resolution|--- |FIXED Status|REOPENED

buildbot exception in ASF Buildbot on tomcat-trunk

2015-06-09 Thread buildbot
The Buildbot has detected a build exception on builder tomcat-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-trunk/builds/1347 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: silvanus_ubuntu Build Reason: The AnyBranchSc

svn commit: r1684368 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/tomcat/util/net/NioChannel.java webapps/docs/changelog.xml

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 09:55:10 2015 New Revision: 1684368 URL: http://svn.apache.org/r1684368 Log: Additional fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=57265 Modified: tomcat/tc7.0.x/trunk/ (props changed) tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioCha

Re: HTTP2 parsing and error handling

2015-06-09 Thread Konstantin Kolinko
2015-06-08 15:37 GMT+03:00 Mark Thomas : > All, > > I'm not particularly happy with the current error handling (based around > Http2Exception) and as I work my way through the spec in detail I am > coming across cases that are becoming increasingly difficult to handle > cleanly. > > I think I have

svn commit: r1684367 - in /tomcat/tc8.0.x/trunk: ./ java/org/apache/tomcat/util/net/NioChannel.java webapps/docs/changelog.xml

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 09:51:54 2015 New Revision: 1684367 URL: http://svn.apache.org/r1684367 Log: Additional fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=57265 Modified: tomcat/tc8.0.x/trunk/ (props changed) tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/NioCha

svn commit: r1684366 - /tomcat/trunk/java/org/apache/tomcat/util/net/NioChannel.java

2015-06-09 Thread markt
Author: markt Date: Tue Jun 9 09:48:46 2015 New Revision: 1684366 URL: http://svn.apache.org/r1684366 Log: Additional fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=57265 Modified: tomcat/trunk/java/org/apache/tomcat/util/net/NioChannel.java Modified: tomcat/trunk/java/org/apache/to

[Bug 57530] Reimplement TestAbstractHttp11Processor.testNon2xxResponseWithExpectation test using SimpleHttpClient instead of Java 6

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57530 --- Comment #4 from Konstantin Kolinko --- (In reply to Violeta Georgieva from comment #3) Interesting. This fix looks like having a too wide scope for a single failing test, but I am OK with it. Setting the system property affects all the t

[Bug 57265] Tomcat 8 hiden behind NGINX fails to send file when using NIO connector

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57265 Mark Thomas changed: What|Removed |Added Resolution|FIXED |--- Status|RESOLVED

[Bug 57265] Tomcat 8 hiden behind NGINX fails to send file when using NIO connector

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57265 --- Comment #7 from Mark Thomas --- The previous fix applied equally to HTTP and HTTPS. I'll do another code review. -- You are receiving this mail because: You are the assignee for the bug. --

[Bug 57265] Tomcat 8 hiden behind NGINX fails to send file when using NIO connector

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57265 Mark Thomas changed: What|Removed |Added CC||carl...@gmail.com --- Comment #6 from Ma

[Bug 58011] Tomcat 7 crasches intermittently with NIO and HTTPS

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58011 Mark Thomas changed: What|Removed |Added Resolution|--- |DUPLICATE Status|NEW

Re: svn commit: r1684233 - in /tomcat/trunk: java/org/apache/coyote/http2/ test/org/apache/coyote/http2/

2015-06-09 Thread Mark Thomas
On 09/06/2015 09:46, Konstantin Kolinko wrote: > 2015-06-08 20:57 GMT+03:00 : >> Author: markt >> Date: Mon Jun 8 17:57:05 2015 >> New Revision: 1684233 >> >> URL: http://svn.apache.org/r1684233 >> Log: >> Rename ErrorCode -> Error >> >> Added: >> tomcat/trunk/java/org/apache/coyote/http2/Err

Re: svn commit: r1684233 - in /tomcat/trunk: java/org/apache/coyote/http2/ test/org/apache/coyote/http2/

2015-06-09 Thread Konstantin Kolinko
2015-06-08 20:57 GMT+03:00 : > Author: markt > Date: Mon Jun 8 17:57:05 2015 > New Revision: 1684233 > > URL: http://svn.apache.org/r1684233 > Log: > Rename ErrorCode -> Error > > Added: > tomcat/trunk/java/org/apache/coyote/http2/Error.java > - copied, changed from r1683410, > tomcat/

[Bug 57530] Reimplement TestAbstractHttp11Processor.testNon2xxResponseWithExpectation test using SimpleHttpClient instead of Java 6

2015-06-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57530 --- Comment #3 from Violeta Georgieva --- Hi, What do you think if we add the code below. Currently "Expect" header is restricted and because of this it is not added as request property. If we set "sun.net.http.allowRestrictedHeaders" to "true

svn commit: r1684353 - /tomcat/trunk/java/org/apache/coyote/http2/Http2UpgradeHandler.java

2015-06-09 Thread kkolinko
Author: kkolinko Date: Tue Jun 9 08:35:12 2015 New Revision: 1684353 URL: http://svn.apache.org/r1684353 Log: Correct typo in a method name Modified: tomcat/trunk/java/org/apache/coyote/http2/Http2UpgradeHandler.java Modified: tomcat/trunk/java/org/apache/coyote/http2/Http2UpgradeHandler.ja