[Bug 61740] Intermittent NIO HTTP/2 errors

2017-11-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61740

Remy Maucherat  changed:

   What|Removed |Added

 OS||All

--- Comment #1 from Remy Maucherat  ---
According to my testing, this demonstrates some amount of reliability issues
and possible fixes pretty much everywhere, but more with NIO2. Lots of things
to work on and debug, thanks for keeping us busy ;)

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



[Bug 61524] NullPointerException in Http11OutputBuffer

2017-11-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61524

--- Comment #6 from Boris Petrov  ---
I spent quite some time trying to reproduce it but couldn't manage to do it in
a simple test case. :( I really cannot help any more for now. If you prefer,
you can close the issue and at some point, if I manage to create some
reproduction, I can create a new one. Or you just leave this one open as a
reminder.

Thanks for the time!

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



svn commit: r1814733 - /tomcat/trunk/java/org/apache/coyote/http2/Http2AsyncUpgradeHandler.java

2017-11-09 Thread remm
Author: remm
Date: Thu Nov  9 14:39:49 2017
New Revision: 1814733

URL: http://svn.apache.org/viewvc?rev=1814733&view=rev
Log:
Although I don't understand why yet, the test for BZ61740 demonstrated the 
headers write need a sync. This has a performance cost.

Modified:
tomcat/trunk/java/org/apache/coyote/http2/Http2AsyncUpgradeHandler.java

Modified: 
tomcat/trunk/java/org/apache/coyote/http2/Http2AsyncUpgradeHandler.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http2/Http2AsyncUpgradeHandler.java?rev=1814733&r1=1814732&r2=1814733&view=diff
==
--- tomcat/trunk/java/org/apache/coyote/http2/Http2AsyncUpgradeHandler.java 
(original)
+++ tomcat/trunk/java/org/apache/coyote/http2/Http2AsyncUpgradeHandler.java Thu 
Nov  9 14:39:49 2017
@@ -31,7 +31,6 @@ import java.util.concurrent.TimeUnit;
 import org.apache.coyote.Adapter;
 import org.apache.coyote.ProtocolException;
 import org.apache.coyote.Request;
-import org.apache.tomcat.util.http.MimeHeaders;
 import org.apache.tomcat.util.net.SendfileState;
 import org.apache.tomcat.util.net.SocketWrapperBase;
 import org.apache.tomcat.util.net.SocketWrapperBase.BlockingMode;
@@ -149,16 +148,6 @@ public class Http2AsyncUpgradeHandler ex
 }
 
 
-@Override
-void writeHeaders(Stream stream, int pushedStreamId, MimeHeaders 
mimeHeaders,
-boolean endOfStream, int payloadSize) throws IOException {
-doWriteHeaders(stream, pushedStreamId, mimeHeaders, endOfStream, 
payloadSize);
-if (endOfStream) {
-stream.sentEndOfStream();
-}
-}
-
-
 @Override
 protected HeaderFrameBuffers getHeaderFrameBuffers(int initialPayloadSize) 
{
 return new AsyncHeaderFrameBuffers(initialPayloadSize);



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 61740] Intermittent NIO HTTP/2 errors

2017-11-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61740

--- Comment #2 from Remy Maucherat  ---
I fixed the NIO2 specific issue (it will be in 9.0.2) pending possible further
improvements. The behavior is now the same as with NIO, I can reproduce that
very few of the static requests fail and I don't see where the root cause can
be at the moment.

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



[Bug 58988] $ escaping for rewrite

2017-11-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58988

Stefan  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

--- Comment #5 from Stefan  ---
It seems not fixed at 8.5.20 - \%20 was converted to %2520

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



[GitHub] tomcat issue #76: added SessionInitializerFilter

2017-11-09 Thread markt-asf
Github user markt-asf commented on the issue:

https://github.com/apache/tomcat/pull/76
  
Looking at this is on my TODO list to look at before the next release


---

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 58988] $ escaping for rewrite

2017-11-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58988

--- Comment #6 from Felix Schumacher  ---
(In reply to Stefan from comment #5)
> It seems not fixed at 8.5.20 - \%20 was converted to %2520

What happens when you don't place the backslash in front of %20?

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



[Bug 61736] NIO BlockPoller may stay at events() method for too long time

2017-11-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61736

Christopher Schultz  changed:

   What|Removed |Added

 OS|Mac OS X 10.1   |All

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



Re: [VOTE] Release Apache Commons Daemon 1.1.0 based on RC2

2017-11-09 Thread Mark Thomas
On 09/11/17 20:18, Gary Gregory wrote:
> There is a lot of required information missing from this VOTE request.

No there isn't. The VOTE contains more than the minimum necessary
information for a VOTE that is consistent with ASF policy.

Take a look at a typical httpd vote thread:
http://markmail.org/thread/t5qjo3s6cnis6dag

> How about following the format in
> http://commons.apache.org/releases/prepare.html ?

Commons seems to have added an awful lot of additional requirements.
Working through them:

Listing the Maven artefacts and hashes is unnecessary given the staging
repo URL and the auditing we have in place around repository actions.

The site is not part of the release and as such does not need to be
voted on. In addition, now that people.a.o does not allow shell access
publishing a draft site is rather more involved. Simpler for folks just
to build it locally and review it if they want to.

With uploading a working draft site no longer possible, providing links
to RAT and Clirr reports is not as simple as it once was. Added to
which, if folks want to base their vote on the RAT and Clirr reports
then to be sure they see the correct results they should generate them
locally. Given they'll have to build from source anyway, generating
those reports (and the rest of the site) is only one more command.

What the RM has tested and how belongs in the RM's vote e-mail, not in
the original call for a VOTE.

Mark

> 
> Gary
> 
> On Thu, Nov 9, 2017 at 1:15 PM, Mark Thomas  wrote:
> 
>> The Apache Commons Deamon 1.1.0 release based on RC2 is now ready for
>> voting.
>>
>> It can be obtained from:
>> https://dist.apache.org/repos/dist/dev/commons/daemon/
>>
>> The Maven staging repo is:
>> https://repository.apache.org/content/repositories/orgapachecommons-1291/
>>
>> The svn tag is:
>> https://svn.apache.org/repos/asf/commons/proper/daemon/
>> tags/COMMONS_DAEMON_1_1_0_RC2/
>> (r1814731)
>>
>>
>> The proposed release is:
>>
>> The proposed 1.1.0 release based on RC2 is:
>> [ ] Broken   - do not release because...
>> [ ] Approved - go ahead and release as 1.1.0
>>
>>
>> Thanks,
>>
>> Mark
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
>> For additional commands, e-mail: dev-h...@commons.apache.org
>>
>>
> 


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: [VOTE] Release Apache Commons Daemon 1.1.0 based on RC2

2017-11-09 Thread Mark Thomas
Sorry folks.

I think this is just user error with auto-complete on the address but it
has been happening an awful lately. I'm beginning to wonder if there is
some UI oddity going on. I'll try and keep an eye on it.

Sorry for the noise.

Mark


On 09/11/17 21:34, Mark Thomas wrote:
> On 09/11/17 20:18, Gary Gregory wrote:
>> There is a lot of required information missing from this VOTE request.
> 
> No there isn't. The VOTE contains more than the minimum necessary
> information for a VOTE that is consistent with ASF policy.
> 
> Take a look at a typical httpd vote thread:
> http://markmail.org/thread/t5qjo3s6cnis6dag
> 
>> How about following the format in
>> http://commons.apache.org/releases/prepare.html ?
> 
> Commons seems to have added an awful lot of additional requirements.
> Working through them:
> 
> Listing the Maven artefacts and hashes is unnecessary given the staging
> repo URL and the auditing we have in place around repository actions.
> 
> The site is not part of the release and as such does not need to be
> voted on. In addition, now that people.a.o does not allow shell access
> publishing a draft site is rather more involved. Simpler for folks just
> to build it locally and review it if they want to.
> 
> With uploading a working draft site no longer possible, providing links
> to RAT and Clirr reports is not as simple as it once was. Added to
> which, if folks want to base their vote on the RAT and Clirr reports
> then to be sure they see the correct results they should generate them
> locally. Given they'll have to build from source anyway, generating
> those reports (and the rest of the site) is only one more command.
> 
> What the RM has tested and how belongs in the RM's vote e-mail, not in
> the original call for a VOTE.
> 
> Mark
> 
>>
>> Gary
>>
>> On Thu, Nov 9, 2017 at 1:15 PM, Mark Thomas  wrote:
>>
>>> The Apache Commons Deamon 1.1.0 release based on RC2 is now ready for
>>> voting.
>>>
>>> It can be obtained from:
>>> https://dist.apache.org/repos/dist/dev/commons/daemon/
>>>
>>> The Maven staging repo is:
>>> https://repository.apache.org/content/repositories/orgapachecommons-1291/
>>>
>>> The svn tag is:
>>> https://svn.apache.org/repos/asf/commons/proper/daemon/
>>> tags/COMMONS_DAEMON_1_1_0_RC2/
>>> (r1814731)
>>>
>>>
>>> The proposed release is:
>>>
>>> The proposed 1.1.0 release based on RC2 is:
>>> [ ] Broken   - do not release because...
>>> [ ] Approved - go ahead and release as 1.1.0
>>>
>>>
>>> Thanks,
>>>
>>> Mark
>>>
>>> -
>>> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
>>> For additional commands, e-mail: dev-h...@commons.apache.org
>>>
>>>
>>
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org
> 


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1814793 - in /tomcat/native/trunk: bin/ native/srclib/VERSIONS xdocs/miscellaneous/changelog.xml

2017-11-09 Thread markt
Author: markt
Date: Thu Nov  9 21:45:35 2017
New Revision: 1814793

URL: http://svn.apache.org/viewvc?rev=1814793&view=rev
Log:
Update recommended OpenSSL version to 1.0.2m

Added:
tomcat/native/trunk/bin/
Modified:
tomcat/native/trunk/native/srclib/VERSIONS
tomcat/native/trunk/xdocs/miscellaneous/changelog.xml

Modified: tomcat/native/trunk/native/srclib/VERSIONS
URL: 
http://svn.apache.org/viewvc/tomcat/native/trunk/native/srclib/VERSIONS?rev=1814793&r1=1814792&r2=1814793&view=diff
==
--- tomcat/native/trunk/native/srclib/VERSIONS (original)
+++ tomcat/native/trunk/native/srclib/VERSIONS Thu Nov  9 21:45:35 2017
@@ -1,4 +1,4 @@
 Use the following version of the libraries
 
 - APR 1.6.2, http://apr.apache.org
-- OpenSSL 1.0.2l or later, http://www.openssl.org
+- OpenSSL 1.0.2m or later, http://www.openssl.org

Modified: tomcat/native/trunk/xdocs/miscellaneous/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/native/trunk/xdocs/miscellaneous/changelog.xml?rev=1814793&r1=1814792&r2=1814793&view=diff
==
--- tomcat/native/trunk/xdocs/miscellaneous/changelog.xml (original)
+++ tomcat/native/trunk/xdocs/miscellaneous/changelog.xml Thu Nov  9 21:45:35 
2017
@@ -34,6 +34,11 @@
   This is the Changelog for Tomcat Native 1.2.
   
 
+
+
+  Update recommended OpenSSL version to 1.0.2m. (markt)
+
+
 
   
 



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1814795 - in /tomcat/native/trunk/xdocs: index.xml news/2017.xml

2017-11-09 Thread markt
Author: markt
Date: Thu Nov  9 21:52:52 2017
New Revision: 1814795

URL: http://svn.apache.org/viewvc?rev=1814795&view=rev
Log:
Add missing news entry for 1.2.14 release and update index page.

Modified:
tomcat/native/trunk/xdocs/index.xml
tomcat/native/trunk/xdocs/news/2017.xml

Modified: tomcat/native/trunk/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/tomcat/native/trunk/xdocs/index.xml?rev=1814795&r1=1814794&r2=1814795&view=diff
==
--- tomcat/native/trunk/xdocs/index.xml (original)
+++ tomcat/native/trunk/xdocs/index.xml Thu Nov  9 21:52:52 2017
@@ -59,10 +59,10 @@
 
 
 
-21 February 2017 - TC-Native-1.2.12
+4 September 2017 - TC-Native-1.2.14
 released
 The Apache Tomcat team is proud to announce the immediate availability of
-Tomcat Native 1.2.12 Stable.
+Tomcat Native 1.2.14 Stable.
 
 The sources and the binaries for selected platforms are available from the
 Download page.

Modified: tomcat/native/trunk/xdocs/news/2017.xml
URL: 
http://svn.apache.org/viewvc/tomcat/native/trunk/xdocs/news/2017.xml?rev=1814795&r1=1814794&r2=1814795&view=diff
==
Binary files - no diff available.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1814797 - in /tomcat/site/trunk/docs/native-doc: index.html news/2017.html

2017-11-09 Thread markt
Author: markt
Date: Thu Nov  9 21:55:32 2017
New Revision: 1814797

URL: http://svn.apache.org/viewvc?rev=1814797&view=rev
Log:
Add news entry for 1.2.14 and update index page

Modified:
tomcat/site/trunk/docs/native-doc/index.html
tomcat/site/trunk/docs/native-doc/news/2017.html

Modified: tomcat/site/trunk/docs/native-doc/index.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/native-doc/index.html?rev=1814797&r1=1814796&r2=1814797&view=diff
==
--- tomcat/site/trunk/docs/native-doc/index.html (original)
+++ tomcat/site/trunk/docs/native-doc/index.html Thu Nov  9 21:55:32 2017
@@ -27,10 +27,10 @@
 Headlines
 
 
-21 February 2017 - TC-Native-1.2.12
+4 September 2017 - TC-Native-1.2.14
 released
 The Apache Tomcat team is proud to announce the immediate availability of
-Tomcat Native 1.2.12 Stable.
+Tomcat Native 1.2.14 Stable.
 
 The sources and the binaries for selected platforms are available from the
 Download page.

Modified: tomcat/site/trunk/docs/native-doc/news/2017.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/native-doc/news/2017.html?rev=1814797&r1=1814796&r2=1814797&view=diff
==
--- tomcat/site/trunk/docs/native-doc/news/2017.html (original)
+++ tomcat/site/trunk/docs/native-doc/news/2017.html Thu Nov  9 21:55:32 2017
@@ -1,5 +1,12 @@
 
 The Apache Tomcat Native - News - 2017 News and 
Statushttp://tomcat.apache.org/";>http://www.apache.org/"; target="_blank">The Apache Tomcat Native - 
NewsLinksDocs Home
 Miscellaneous 
DocumentationChangelogNews20172016201520142013201220112010200920082017 News and Status2017 News & Status
+ 4 Sep 2017 - TC-Native-1.2.14 
released
+  The Apache Tomcat team is proud to announce the immediate availability
+  of Tomcat Native 1.2.14. This is a bugfix release that also updates the
+  dependencies for the Windows binaries and includes Windows binaries built 
with
+  OpenSSL 1.0.2l and APR 1.6.2.
+  
+ 
  21 Feb 2017 - TC-Native-1.2.12 
released
   The Apache Tomcat team is proud to announce the immediate availability
   of Tomcat Native 1.2.12. This is a release to update dependencies for the



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1814801 - /tomcat/native/trunk/xdocs/miscellaneous/project.xml

2017-11-09 Thread markt
Author: markt
Date: Thu Nov  9 22:30:15 2017
New Revision: 1814801

URL: http://svn.apache.org/viewvc?rev=1814801&view=rev
Log:
Add missing link to 2017 news

Modified:
tomcat/native/trunk/xdocs/miscellaneous/project.xml

Modified: tomcat/native/trunk/xdocs/miscellaneous/project.xml
URL: 
http://svn.apache.org/viewvc/tomcat/native/trunk/xdocs/miscellaneous/project.xml?rev=1814801&r1=1814800&r2=1814801&view=diff
==
--- tomcat/native/trunk/xdocs/miscellaneous/project.xml (original)
+++ tomcat/native/trunk/xdocs/miscellaneous/project.xml Thu Nov  9 22:30:15 2017
@@ -34,6 +34,7 @@
 
 
 
+
 
 
 



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump-vm3]: Project tomcat-tc7.0.x-validate (in module tomcat-7.0.x) failed

2017-11-09 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-tc7.0.x-validate has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 46 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- tomcat-tc7.0.x-validate :  Tomcat 7.x, a web server implementing Java 
Servlet 3.0,
...


Full details are available at:
http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-validate/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on checkstyle exists, no need to add for property 
checkstyle.jar.
 -INFO- Failed with reason build failed



The following work was performed:
http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-validate/gump_work/build_tomcat-7.0.x_tomcat-tc7.0.x-validate.html
Work Name: build_tomcat-7.0.x_tomcat-tc7.0.x-validate (Type: Build)
Work ended in a state of : Failed
Elapsed: 28 secs
Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only org.apache.tools.ant.Main 
-Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dbase.path=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-build-libs 
-Dcheckstyle.jar=/srv/gump/public/workspace/checkstyle/target/checkstyle-8.5-SNAPSHOT.jar
 -Dexecute.validate=true validate 
[Working Directory: /srv/gump/public/workspace/tomcat-7.0.x]
CLASSPATH: 
/usr/lib/jvm/java-8-oracle/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/checkstyle/target/checkstyle-8.5-SNAPSHOT.jar:/srv/gump/packages/antlr/antlr-3.1.3.jar:/srv/gump/public/workspace/apache-commons/beanutils/dist/commons-beanutils-20171110.jar:/srv/gump/packages/commons-collections3/commons-collections-3.2.1.jar:/srv/gump/public/workspace/commons-cli/target/commons-cli-1.5-SNAPSHOT.jar:/srv/gump/public/workspace/commons-lang-trunk/target/commons-lang3-3.8-SNAPSHOT.jar:/srv/g
 
ump/public/workspace/apache-commons/logging/target/commons-logging-20171110.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-20171110.jar:/srv/gump/public/workspace/google-guava/guava/target/guava-HEAD-jre-SNAPSHOT.jar
-
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-7.0.x/test/org/apache/el/TestELInJsp.java:23: 
Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-7.0.x/test/org/apache/el/TestMethodExpressionImpl.java:30:
 Extra separation in import group before 'org.junit.Before' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-7.0.x/test/org/apache/el/TestValueExpressionImpl.java:34:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-7.0.x/test/org/apache/el/lang/TestELArithmetic.java:24:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-7.0.x/test/org/apache/el/lang/TestELSupport.java:29:
 Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-7.0.x/test/org/apache/el/parser/TestELParser.java:28:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-7.0.x/test/org/apache/jasper/compiler/TestAttributeParser.java:24:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-7.0.x/test/org/apache/jasper/compiler/TestCompiler.java:28:
 Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-7.0.x/test/org/apache/jasper/compiler/TestGenerator.java:37:
 Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-7.0.x/test/org/apache/jasper/compiler/TestJspConfig.java:24:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-7.0.x/test/org/apache/jasper/compiler/TestParser.java:26:
 Extra sep

[GUMP@vmgump-vm3]: Project tomcat-tc8.0.x-validate (in module tomcat-8.0.x) failed

2017-11-09 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-tc8.0.x-validate has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 46 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- tomcat-tc8.0.x-validate :  Tomcat 8.x, a web server implementing the Java 
Servlet 3.1,
...


Full details are available at:
http://vmgump-vm3.apache.org/tomcat-8.0.x/tomcat-tc8.0.x-validate/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on checkstyle exists, no need to add for property 
checkstyle.jar.
 -INFO- Failed with reason build failed



The following work was performed:
http://vmgump-vm3.apache.org/tomcat-8.0.x/tomcat-tc8.0.x-validate/gump_work/build_tomcat-8.0.x_tomcat-tc8.0.x-validate.html
Work Name: build_tomcat-8.0.x_tomcat-tc8.0.x-validate (Type: Build)
Work ended in a state of : Failed
Elapsed: 32 secs
Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only org.apache.tools.ant.Main 
-Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dbase.path=/srv/gump/public/workspace/tomcat-8.0.x/tomcat-build-libs 
-Dcheckstyle.jar=/srv/gump/public/workspace/checkstyle/target/checkstyle-8.5-SNAPSHOT.jar
 -Dexecute.validate=true validate 
[Working Directory: /srv/gump/public/workspace/tomcat-8.0.x]
CLASSPATH: 
/usr/lib/jvm/java-8-oracle/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/checkstyle/target/checkstyle-8.5-SNAPSHOT.jar:/srv/gump/packages/antlr/antlr-3.1.3.jar:/srv/gump/public/workspace/apache-commons/beanutils/dist/commons-beanutils-20171110.jar:/srv/gump/packages/commons-collections3/commons-collections-3.2.1.jar:/srv/gump/public/workspace/commons-cli/target/commons-cli-1.5-SNAPSHOT.jar:/srv/gump/public/workspace/commons-lang-trunk/target/commons-lang3-3.8-SNAPSHOT.jar:/srv/g
 
ump/public/workspace/apache-commons/logging/target/commons-logging-20171110.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-20171110.jar:/srv/gump/public/workspace/google-guava/guava/target/guava-HEAD-jre-SNAPSHOT.jar
-
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-8.0.x/test/org/apache/el/TestValueExpressionImpl.java:34:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-8.0.x/test/org/apache/el/lang/TestELArithmetic.java:26:
 Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-8.0.x/test/org/apache/el/lang/TestELSupport.java:30:
 Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-8.0.x/test/org/apache/el/parser/TestELParser.java:28:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-8.0.x/test/org/apache/jasper/compiler/TestAttributeParser.java:24:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-8.0.x/test/org/apache/jasper/compiler/TestCompiler.java:29:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-8.0.x/test/org/apache/jasper/compiler/TestGenerator.java:36:
 Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-8.0.x/test/org/apache/jasper/compiler/TestJspConfig.java:24:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-8.0.x/test/org/apache/jasper/compiler/TestParser.java:25:
 Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-8.0.x/test/org/apache/jasper/compiler/TestParserNoStrictWhitespace.java:26:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-8.0.x/test/org/apache/jasper/compiler/Tes

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

2017-11-09 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-trunk-validate has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 46 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- tomcat-trunk-validate :  Tomcat 9.x, a web server implementing the Java 
Servlet 4.0,
...


Full details are available at:
http://vmgump-vm3.apache.org/tomcat-trunk/tomcat-trunk-validate/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on checkstyle exists, no need to add for property 
checkstyle.jar.
 -INFO- Failed with reason build failed



The following work was performed:
http://vmgump-vm3.apache.org/tomcat-trunk/tomcat-trunk-validate/gump_work/build_tomcat-trunk_tomcat-trunk-validate.html
Work Name: build_tomcat-trunk_tomcat-trunk-validate (Type: Build)
Work ended in a state of : Failed
Elapsed: 30 secs
Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only org.apache.tools.ant.Main 
-Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dbase.path=/srv/gump/public/workspace/tomcat-trunk/tomcat-build-libs 
-Dcheckstyle.jar=/srv/gump/public/workspace/checkstyle/target/checkstyle-8.5-SNAPSHOT.jar
 -Dexecute.validate=true validate 
[Working Directory: /srv/gump/public/workspace/tomcat-trunk]
CLASSPATH: 
/usr/lib/jvm/java-8-oracle/lib/tools.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/checkstyle/target/checkstyle-8.5-SNAPSHOT.jar:/srv/gump/packages/antlr/antlr-3.1.3.jar:/srv/gump/public/workspace/apache-commons/beanutils/dist/commons-beanutils-20171110.jar:/srv/gump/packages/commons-collections3/commons-collections-3.2.1.jar:/srv/gump/public/workspace/commons-cli/target/commons-cli-1.5-SNAPSHOT.jar:/srv/gump/public/workspace/commons-lang-trunk/target/commons-lang3-3.8-SNAPSHOT.jar:/srv/g
 
ump/public/workspace/apache-commons/logging/target/commons-logging-20171110.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-20171110.jar:/srv/gump/public/workspace/google-guava/guava/target/guava-HEAD-jre-SNAPSHOT.jar
-
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-trunk/test/org/apache/el/TestValueExpressionImpl.java:34:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-trunk/test/org/apache/el/lang/TestELArithmetic.java:26:
 Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-trunk/test/org/apache/el/lang/TestELSupport.java:30:
 Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-trunk/test/org/apache/el/parser/TestELParser.java:30:
 Extra separation in import group before 'org.junit.Ignore' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-trunk/test/org/apache/jasper/compiler/TestAttributeParser.java:24:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-trunk/test/org/apache/jasper/compiler/TestCompiler.java:29:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-trunk/test/org/apache/jasper/compiler/TestGenerator.java:36:
 Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-trunk/test/org/apache/jasper/compiler/TestJspConfig.java:24:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-trunk/test/org/apache/jasper/compiler/TestParser.java:25:
 Extra separation in import group before 'org.junit.Assert' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-trunk/test/org/apache/jasper/compiler/TestParserNoStrictWhitespace.java:26:
 Extra separation in import group before 'org.junit.Test' [ImportOrder]
[checkstyle] [ERROR] 
/srv/gump/public/workspace/tomcat-trunk/test/org/apache/jasper/compiler/TestScriptingV