Re: [GUMP@vmgump-vm3]: Project tomcat-trunk (in module tomcat-trunk) failed

2019-01-17 Thread Mark Thomas
On 17/01/2019 02:09, Bill Barker wrote: > [javac] symbol: class ExtensibilityElement > [javac] location: class ServiceRefFactory > [javac] > /srv/gump/public/workspace/tomcat-trunk/java/org/apache/naming/factory/webservices/ServiceRefFactory.java:328: > error: cannot find sym

[Bug 63078] autodeploy in Tomcat 9.0.14 is not working anymore

2019-01-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63078 --- Comment #12 from Remy Maucherat --- Ok, so this turns out rather mysterious. The executor used has an unlimited queue and any execution rejection or error is supposed to be logged anyway, so there shouldn't be a problem. Can you try another

[Bug 63078] autodeploy in Tomcat 9.0.14 is not working anymore

2019-01-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63078 --- Comment #13 from Peter --- We are getting closer. I testet with startStopThreads="2", startStopThreads="4" and startStopThreads="8" In these cases autodeploy is working fine. Only startStopThreads="0" has the problem. -- You are receivi

[Bug 63078] autodeploy in Tomcat 9.0.14 is not working anymore

2019-01-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63078 --- Comment #14 from Konstantin Kolinko --- 1. Have you looked into Tomcat log files? 2. A comment says: This means that the actual number depends on your hardware. I wonder what is the actual number of cores that Java reports for you. --

[Bug 63078] autodeploy in Tomcat 9.0.14 is not working anymore

2019-01-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63078 --- Comment #15 from Remy Maucherat --- (In reply to Konstantin Kolinko from comment #14) > 1. Have you looked into Tomcat log files? > > 2. A comment says: > > > This means that the actual number depends on your hardware. > I wonder what is

svn commit: r1851580 - /tomcat/trunk/java/org/apache/coyote/http2/Stream.java

2019-01-17 Thread markt
Author: markt Date: Thu Jan 17 20:46:16 2019 New Revision: 1851580 URL: http://svn.apache.org/viewvc?rev=1851580&view=rev Log: Rename for clarity Modified: tomcat/trunk/java/org/apache/coyote/http2/Stream.java Modified: tomcat/trunk/java/org/apache/coyote/http2/Stream.java URL: http://svn.a

svn commit: r1851581 - in /tomcat/tc8.5.x/trunk: ./ java/org/apache/coyote/http2/Stream.java

2019-01-17 Thread markt
Author: markt Date: Thu Jan 17 20:46:49 2019 New Revision: 1851581 URL: http://svn.apache.org/viewvc?rev=1851581&view=rev Log: Rename for clarity Modified: tomcat/tc8.5.x/trunk/ (props changed) tomcat/tc8.5.x/trunk/java/org/apache/coyote/http2/Stream.java Propchange: tomcat/tc8.5.x/tru

svn commit: r1851582 - /tomcat/trunk/java/org/apache/catalina/core/StandardWrapperValve.java

2019-01-17 Thread markt
Author: markt Date: Thu Jan 17 20:49:58 2019 New Revision: 1851582 URL: http://svn.apache.org/viewvc?rev=1851582&view=rev Log: Add debug logging of ClientAbortExceptions Modified: tomcat/trunk/java/org/apache/catalina/core/StandardWrapperValve.java Modified: tomcat/trunk/java/org/apache/cata

svn commit: r1851583 - in /tomcat/tc8.5.x/trunk: ./ java/org/apache/coyote/http2/Stream.java

2019-01-17 Thread markt
Author: markt Date: Thu Jan 17 20:51:24 2019 New Revision: 1851583 URL: http://svn.apache.org/viewvc?rev=1851583&view=rev Log: Fix back-port Modified: tomcat/tc8.5.x/trunk/ (props changed) tomcat/tc8.5.x/trunk/java/org/apache/coyote/http2/Stream.java Propchange: tomcat/tc8.5.x/trunk/ -

svn commit: r1851584 - /tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/StandardWrapperValve.java

2019-01-17 Thread markt
Author: markt Date: Thu Jan 17 20:51:39 2019 New Revision: 1851584 URL: http://svn.apache.org/viewvc?rev=1851584&view=rev Log: Add debug logging of ClientAbortExceptions Modified: tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/StandardWrapperValve.java Modified: tomcat/tc8.5.x/trunk/jav

[Bug 63078] autodeploy in Tomcat 9.0.14 is not working anymore

2019-01-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63078 --- Comment #16 from Coty Sutherland --- Are you able to reproduce the problem 100% of the time? How large are your webapps and how long does it take to deploy/undeploy? Does the same webapp fail repeatedly, or are you able to reproduce with di

svn commit: r1851587 - in /tomcat/trunk: java/org/apache/catalina/core/StandardServer.java webapps/docs/changelog.xml webapps/docs/config/server.xml

2019-01-17 Thread remm
Author: remm Date: Thu Jan 17 21:46:32 2019 New Revision: 1851587 URL: http://svn.apache.org/viewvc?rev=1851587&view=rev Log: Use Runtime.getRuntime().availableProcessors() again as the base value for utility thread counts, it has been used that way for too long and shouldn't have been changed.

[Bug 63078] autodeploy in Tomcat 9.0.14 is not working anymore

2019-01-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63078 --- Comment #17 from Remy Maucherat --- Negative or zero values will now again use (Runtime.getRuntime().availableProcessors() + value) in Tomcat 9.0.15. It's not really related to the mysterious behavior, but it shouldn't have been changed as

svn commit: r1851588 - in /tomcat/trunk: java/org/apache/catalina/connector/InputBuffer.java webapps/docs/changelog.xml

2019-01-17 Thread markt
Author: markt Date: Thu Jan 17 22:04:07 2019 New Revision: 1851588 URL: http://svn.apache.org/viewvc?rev=1851588&view=rev Log: Treat I/O errors during request body reads the same way as I/O errors during response body writes. The errors are treated as client side errors rather than server side e

svn commit: r1851589 - in /tomcat/tc8.5.x/trunk: ./ java/org/apache/catalina/connector/InputBuffer.java webapps/docs/changelog.xml

2019-01-17 Thread markt
Author: markt Date: Thu Jan 17 22:05:14 2019 New Revision: 1851589 URL: http://svn.apache.org/viewvc?rev=1851589&view=rev Log: Treat I/O errors during request body reads the same way as I/O errors during response body writes. The errors are treated as client side errors rather than server side e

svn commit: r1851592 - /tomcat/trunk/java/org/apache/tomcat/util/net/LocalStrings.properties

2019-01-17 Thread markt
Author: markt Date: Thu Jan 17 23:10:36 2019 New Revision: 1851592 URL: http://svn.apache.org/viewvc?rev=1851592&view=rev Log: Correct tense (reported via POEditor) Modified: tomcat/trunk/java/org/apache/tomcat/util/net/LocalStrings.properties Modified: tomcat/trunk/java/org/apache/tomcat/ut

svn commit: r1851593 - /tomcat/trunk/java/org/apache/tomcat/util/net/LocalStrings.properties

2019-01-17 Thread markt
Author: markt Date: Thu Jan 17 23:13:08 2019 New Revision: 1851593 URL: http://svn.apache.org/viewvc?rev=1851593&view=rev Log: Improve wording. Reported via POEditor Modified: tomcat/trunk/java/org/apache/tomcat/util/net/LocalStrings.properties Modified: tomcat/trunk/java/org/apache/tomcat/u

[Bug 63078] autodeploy in Tomcat 9.0.14 is not working anymore

2019-01-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63078 --- Comment #18 from Peter --- We operate more than 30 of tomcat server with many different webapps. All server run in a big blade environments in virtual maschines. New versions of these webapps from many developer gets automatically deployed