[GitHub] [tomcat] markt-asf commented on pull request #372: Update FileHandler.java

2020-10-22 Thread GitBox
markt-asf commented on pull request #372: URL: https://github.com/apache/tomcat/pull/372#issuecomment-714333180 The DELETE_FILES_SERVICE executor is intended to be a singleton. This PR breaks that and is, therefore, unlikely to be applied.

[GitHub] [tomcat] dao-jun commented on pull request #372: Update FileHandler.java

2020-10-22 Thread GitBox
dao-jun commented on pull request #372: URL: https://github.com/apache/tomcat/pull/372#issuecomment-714342340 > The DELETE_FILES_SERVICE executor is intended to be a singleton. This PR breaks that and is, therefore, unlikely to be applied. Yep, I forgot that. The pr will be closed

[GitHub] [tomcat] dao-jun closed pull request #372: Update FileHandler.java

2020-10-22 Thread GitBox
dao-jun closed pull request #372: URL: https://github.com/apache/tomcat/pull/372 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to

[Bug 64830] HTTP2 : GOAWAY sent with Protocol Error and Frame Size Error

2020-10-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64830 --- Comment #6 from Remy Maucherat --- Pinging for updates on BZs is not allowed. This is not the first time you are doing this. -- You are receiving this mail because: You are the assignee for the bug.

[Bug 64839] New: HTTP2: Exception in thread "http-nio-x.y.z-1090-ClientPoller" java.lang.NullPointerException

2020-10-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64839 Bug ID: 64839 Summary: HTTP2: Exception in thread "http-nio-x.y.z-1090-ClientPoller" java.lang.NullPointerException Product: Tomcat 9 Version: 9.0.38

[GitHub] [tomcat] dao-jun opened a new pull request #372: Update FileHandler.java

2020-10-22 Thread GitBox
dao-jun opened a new pull request #372: URL: https://github.com/apache/tomcat/pull/372 remove static keyword from `DELETE_FILES_SERVICE` to avoid class `ThreadPoolExecutor` loaded earlier than agent start. It can cause agent enhance class `ThreadPoolExecutor` failed.

[Bug 64839] HTTP2: Exception in thread "http-nio-x.y.z-1090-ClientPoller" java.lang.NullPointerException

2020-10-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64839 Mark Thomas changed: What|Removed |Added Status|NEW |NEEDINFO Severity|blocker

[Bug 64839] HTTP2: Exception in thread "http-nio-x.y.z-1090-ClientPoller" java.lang.NullPointerException

2020-10-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64839 --- Comment #1 from Remy Maucherat --- Can you provide the full stack trace of the exception ? -- You are receiving this mail because: You are the assignee for the bug. - To

[Bug 64839] HTTP2: Exception in thread "http-nio-x.y.z-1090-ClientPoller" java.lang.NullPointerException

2020-10-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64839 Arshiya changed: What|Removed |Added Status|NEEDINFO|NEW --- Comment #3 from Arshiya --- This

[GitHub] [tomcat] dao-jun opened a new pull request #373: lazy set filed `DELETE_FILES_SERVICE`

2020-10-22 Thread GitBox
dao-jun opened a new pull request #373: URL: https://github.com/apache/tomcat/pull/373 Lazy set field `DELETE_FILES_SERVICE` to avoid class `ThreadPoolExecutor` loaded earlier than tomcat start. Actually, some `APM` systems enhance class `ThreadPoolExecutor` with `java agent`, the

[tomcat] branch master updated: Code cleanup

2020-10-22 Thread remm
This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/master by this push: new c4787f4 Code cleanup c4787f4 is described below

[Bug 64839] HTTP2: Exception in thread "http-nio-x.y.z-1090-ClientPoller" java.lang.NullPointerException

2020-10-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64839 --- Comment #4 from Mark Thomas --- Without the stack trace there isn't much we can do. The most that looks possible at this stage is to add some additional try/catch blocks with logging of exceptions. It would be helpful to see the

[tomcat] branch 9.0.x updated: Code cleanup

2020-10-22 Thread remm
This is an automated email from the ASF dual-hosted git repository. remm 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 8756ed7 Code cleanup 8756ed7 is described below

[tomcat] branch 8.5.x updated: Code cleanup

2020-10-22 Thread remm
This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/8.5.x by this push: new efa937d Code cleanup efa937d is described below

[GitHub] [tomcat] dao-jun commented on pull request #373: lazy set filed `DELETE_FILES_SERVICE`

2020-10-22 Thread GitBox
dao-jun commented on pull request #373: URL: https://github.com/apache/tomcat/pull/373#issuecomment-714864911 > Please provide more information what kind of issue you have now! > The description is a bit vague at the moment. We use `java agent` to enhance class

[Bug 64839] HTTP2: Exception in thread "http-nio-x.y.z-1090-ClientPoller" java.lang.NullPointerException

2020-10-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64839 Arshiya changed: What|Removed |Added Status|NEEDINFO|NEW --- Comment #7 from Arshiya --- The

[Bug 64839] HTTP2: Exception in thread "http-nio-x.y.z-1090-ClientPoller" java.lang.NullPointerException

2020-10-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64839 Remy Maucherat changed: What|Removed |Added Status|NEW |NEEDINFO --- Comment #5 from Remy

[Bug 64839] HTTP2: Exception in thread "http-nio-x.y.z-1090-ClientPoller" java.lang.NullPointerException

2020-10-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64839 --- Comment #6 from Mark Thomas --- +1 to adding that JVM option and then review tge full stack trace as the next step. -- You are receiving this mail because: You are the assignee for the bug.

[GitHub] [tomcat] martin-g commented on pull request #373: lazy set filed `DELETE_FILES_SERVICE`

2020-10-22 Thread GitBox
martin-g commented on pull request #373: URL: https://github.com/apache/tomcat/pull/373#issuecomment-714587911 Please provide more information what kind of issue you have now! The description is a bit vague at the moment.

Re: [Bug 64839] HTTP2: Exception in thread "http-nio-x.y.z-1090-ClientPoller" java.lang.NullPointerException

2020-10-22 Thread Martin Grigorov
On Thu, Oct 22, 2020 at 5:56 PM wrote: > https://bz.apache.org/bugzilla/show_bug.cgi?id=64839 > > Arshiya changed: > >What|Removed |Added > > > Status|NEEDINFO

[Bug 55160] NIO connectionUploadTimeout can't work

2020-10-22 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=55160 --- Comment #5 from Garrison Kubis --- Thanks Mark, I don't see the 7.0.107 tag yet. -- You are receiving this mail because: You are the assignee for the bug. - To

[tomcat] branch 7.0.x updated (0ddfd8a -> 6902e36)

2020-10-22 Thread markt
This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git. from 0ddfd8a Added .vscode to .gitignore new 7f05c89 SpotBugs - fix potential concurrency issue new 42d0454

[tomcat] 01/04: SpotBugs - fix potential concurrency issue

2020-10-22 Thread markt
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git commit 7f05c89106653fb09b5758f99190814469c9f04a Author: Mark Thomas AuthorDate: Thu Oct 22 10:49:06 2020 +0100 SpotBugs -

[tomcat] 03/04: Add missing annotation

2020-10-22 Thread markt
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git commit a7217c837f133153a1a0df6bb9b9837efafe4b02 Author: Mark Thomas AuthorDate: Thu Oct 22 10:58:40 2020 +0100 Add missing

[tomcat] 02/04: Fix previous merge conflict.

2020-10-22 Thread markt
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git commit 42d04541ea098c877391672a249a6554f21c2669 Author: Mark Thomas AuthorDate: Thu Oct 22 10:57:13 2020 +0100 Fix previous

[tomcat] 04/04: Remove unnecessary annotation

2020-10-22 Thread markt
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git commit 6902e3647457b609954afc90b0bad8bde4e0852b Author: Mark Thomas AuthorDate: Thu Oct 22 10:59:17 2020 +0100 Remove

[tomcat] branch 7.0.x updated (6902e36 -> 8d9d469)

2020-10-22 Thread markt
This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git. from 6902e36 Remove unnecessary annotation new eb4beb6 Simplify code new 8d9d469 Fix remaining false positives

[tomcat] 02/02: Fix remaining false positives

2020-10-22 Thread markt
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git commit 8d9d469977d937042068785833e13546cbab6ba7 Author: Mark Thomas AuthorDate: Thu Oct 22 20:54:14 2020 +0100 Fix

[tomcat] 01/02: Simplify code

2020-10-22 Thread markt
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git commit eb4beb68bf3b120b9d7fcee64e38588cb6db60f9 Author: Mark Thomas AuthorDate: Thu Oct 22 20:44:44 2020 +0100 Simplify