[GUMP@vmgump-vm3]: Project tomcat-tc7.0.x-validate (in module tomcat-7.0.x) failed
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. 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: 37 secs Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true -Dbuild.sysclasspath=only -Dsun.zip.disableMemoryMapping=true 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.13-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.13-SNAPSHOT.jar:/srv/gump/packages/antlr/antlr-3.1.3.jar:/srv/gump/public/workspace/commons-beanutils/dist/commons-beanutils-20180928.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.9-SNAPSHOT.jar:/srv/gump/pu blic/workspace/apache-commons/logging/target/commons-logging-20180928.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-20180928.jar:/srv/gump/public/workspace/google-guava/guava/target/guava-HEAD-jre-SNAPSHOT.jar - Buildfile: /srv/gump/public/workspace/tomcat-7.0.x/build.xml build-prepare: [delete] Deleting directory /srv/gump/public/workspace/tomcat-7.0.x/output/build/temp [mkdir] Created dir: /srv/gump/public/workspace/tomcat-7.0.x/output/build/temp compile-prepare: download-validate: proxyflags: setproxy: testexist: [echo] Testing for /srv/gump/public/workspace/checkstyle/target/checkstyle-8.13-SNAPSHOT.jar downloadfile: validate: [mkdir] Created dir: /srv/gump/public/workspace/tomcat-7.0.x/output/res/checkstyle [checkstyle] Running Checkstyle 8.13-SNAPSHOT on 2708 files [checkstyle] [ERROR] /srv/gump/public/workspace/tomcat-7.0.x/java/org/apache/tomcat/websocket/server/WsHandshakeRequest.java:34: Wrong order for 'org.apache.tomcat.util.res.StringManager' import. [ImportOrder] BUILD FAILED /srv/gump/public/workspace/tomcat-7.0.x/build.xml:539: Got 1 errors and 0 warnings. Total time: 36 seconds - To subscribe to this information via syndicated feeds: - RSS: http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-validate/rss.xml - Atom: http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-validate/atom.xml == Gump Tracking Only === Produced by Apache Gump(TM) version 2.3. Gump Run 20180928060006, vmgump-vm3.apache.org:vmgump:20180928060006 Gump E-mail Identifier (unique within run) #1. -- Apache Gump http://gump.apache.org/ [Instance: vmgump-vm3] - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 62771] New: Lost Cookie header (at least) just after request parse
https://bz.apache.org/bugzilla/show_bug.cgi?id=62771 Bug ID: 62771 Summary: Lost Cookie header (at least) just after request parse Product: Tomcat 8 Version: 8.0.24 Hardware: All OS: Linux Status: NEW Severity: critical Priority: P2 Component: Catalina Assignee: dev@tomcat.apache.org Reporter: linooos...@gmail.com Target Milestone: Hi friends I'm working with one tomat 8.0.24 in docker (openshift) with one liferay application. I have 3 PODS up with 12 GB each one. I make next test: simply launch 20.000 request over the same file (one static file) in loop; i send in loop one logger JSESSIONID; when one response returns me a new JSESSIONID, stop loop and study tomcat traces. I have actived all needed tomcat traces, and i added next traces in class CoyoteAdapter.java: protected void parseSessionCookiesId(Request request) { if (log.isDebugEnabled()) { log.debug(" (sn3) Begin parseSessionCookiesId"); } Context context = request.getMappingData().context; if ((context != null) && (!context.getServletContext() .getEffectiveSessionTrackingModes().contains( SessionTrackingMode.COOKIE))) { if (log.isDebugEnabled()) { log.debug(" (sn3) Exit by sessiontracking cookie."); } return; } ServerCookies serverCookies = request.getServerCookies(); int count = serverCookies.getCookieCount(); if (log.isDebugEnabled()) { log.debug(" (sn3) this request have [" + count + "] cookies"); } if (count <= 0) { if (log.isDebugEnabled()) { log.debug(" (sn3) exit with cookies zero"); } return; } Ok! Then, when i recevied one response that change my JSESSIONID, y obtain next response from tomcat: FINE: Received [GET /combo/?browserId=firefox&minifierType=&languageId=es_ES&b=sn33672&t=1487937532000&/html/js/aui/querystring-parse/querystring-parse-min.js&/html/js/aui/aui-url/aui-url-min.js HTTP/1.1 User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3) Accept-Language: es-ES Cookie: COOKIE_SUPPORT=true; GUEST_LANGUAGE_ID=es_ES; JSESSIONID=540BA449FBD21CFE3F91CAFE7E6E3F74; LFR_SESSION_STATE_20161=1524499633140 LFR_SESSION_STATE_21711=1524501937121; COMPANY_ID=20157; ID=68495a7a4c676f5972446677434b59425a54374341773d3d;sn3counter=3672 Referer: http://desktopccorp.aacc.gs.corp/group/espaciocorporativo/home Cache-Control: no-cache Pragma: no-cache Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2 Host: desktopccorp.aacc.gs.corp X-Forwarded-Host: desktopccorp.aacc.gs.corp X-Forwarded-Port: 80 X-Forwarded-Proto: http Forwarded: for=180.93.30.9;host=desktopccorp.aacc.gs.corp;proto=http X-Forwarded-For: 180.93.30.9 ] Sep 12, 2018 3:09:16 PM org.apache.catalina.connector.CoyoteAdapter parsePathParameters FINE: The variable [uriBC] has value [/combo/] Sep 12, 2018 3:09:16 PM org.apache.catalina.connector.CoyoteAdapter parsePathParameters FINE: The variable [semicolon] has value [-1] Sep 12, 2018 3:09:16 PM org.apache.catalina.connector.CoyoteAdapter parsePathParameters FINE: The variable [enc] has value [utf-8] Sep 12, 2018 3:09:16 PM org.apache.catalina.connector.CoyoteAdapter parseSessionCookiesId FINE: (sn3) Begin parseSessionCookiesId Sep 12, 2018 3:09:16 PM org.apache.catalina.connector.CoyoteAdapter parseSessionCookiesId FINE: (sn3) this request have [0] cookies 0 cookies!! All my cookies are lost, but in Received [ trace of AbstractNioInputBuffer you can see that Cookie: header is perfectly received!!! Another important data is the absence of this trace (this is from one "good" request: FINE: Cookies: Parsing b[]: COOKIE_SUPPORT=true; GUEST_LANGUAGE_ID=es_ES; _ga=GA1.4.1488353846.1536682028; _gid=GA1.4.887219159.1536682028; JSESSIONID=540BA449FBD21CFE3F91CAFE7E6E3F74; LFR_SESSION_STATE_20161=1536764659329; COMPANY_ID=20157; ID=767a5147686e743575702b36504e64375a3679306c673d3d; USER_UUID=6f7039446b675950595756797438326f4f724556774c3830706f4d52526f6b304a502b386c7848786955773d; LFR_SESSION_STATE_20695=1536764942296 so, reviewing tomcat code, if y have not this trace generated for cookie parser (i try with two, legacy and Rfc6265CookieProcessor), the unique explanation is that THIS REQUEST HAVE NOT COOKIE HEADER CHARGED IN REQUEST COYOTE MIMEHEADERS OK! Another clue friends! Normally when i have this error, one thread that lost cookies, i have too this error in my tomcat log: Caused by: java.lang.NullPointerException at org.apache.catalina.connector.Request.parseCookies(Request.java:2948) at org.apache.catalina.connector.Request.convertCookies(Request.java:2963) at org.apache.catalina.connector.Request.getCookies(Request.java:1992) at org.apache.catalina.connector.Re
[Bug 62771] Lost Cookie header (at least) just after request parse
https://bz.apache.org/bugzilla/show_bug.cgi?id=62771 Lino changed: What|Removed |Added Keywords||RFC -- 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 62771] Lost Cookie header (at least) just after request parse
https://bz.apache.org/bugzilla/show_bug.cgi?id=62771 Konstantin Kolinko changed: What|Removed |Added Resolution|--- |INVALID Status|NEW |RESOLVED --- Comment #1 from Konstantin Kolinko --- Bugzilla is not a support forum. Tomcat 8.0 has reached end of life several months ago. -- 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 62773] New: Change DeltaManager to handle session deserialization problems more robustly
https://bz.apache.org/bugzilla/show_bug.cgi?id=62773 Bug ID: 62773 Summary: Change DeltaManager to handle session deserialization problems more robustly Product: Tomcat 9 Version: 9.0.12 Hardware: PC OS: Linux Status: NEW Severity: enhancement Priority: P2 Component: Cluster Assignee: dev@tomcat.apache.org Reporter: mi...@claborn.net Target Milestone: - See discussion at http://mail-archives.apache.org/mod_mbox/tomcat-dev/201809.mbox/%3C694b5737-fb87-a976-440f-2ed0719c1e1a%40claborn.net%3E Problems: 1. When processing a received "all sessions" message, and there is an Exception when deserializing a session, there is no logging of what session field or attribute caused the error. This makes it very difficult for the application developer to diagnose and correct problems in the application that caused the error. 2. When such an exception occurs, the session in error and all remaining sessions in that chunk (sendAllSessionsSize) are discarded by the receiving node. There would be significantly less user impact if only the session in error was discarded. I am working on a patch that will address these issues in DeltaManager. Changes in that patch: 1. Update org.apache.catalina.ha.session.DeltaManager.deserializeSessions(byte[]) and org.apache.catalina.ha.session.DeltaSession.doReadObject(ObjectInput) to produce a more detailed error message when a session is in error. New error message includes: the session index in the list of sessions, the session ID, the last field or attribute that was attempted to be read. 2. Introduce new XML attribute verifySerializedSessions for DeltaManager with a default value of false (since the true setting will result in significant overhead when sending all sessions). 3. If verifySerializedSessions="true", org.apache.catalina.ha.session.DeltaManager.serializeSessions(Session[]) will first serialize each session then immediately deserialize it. If all is good, send the session as usual. If any errors are encountered, create and send a dummy session with a known session ID instead. (This keeps the session count, which has already been put in the output stream, correct for the receiving node.) 4. Update org.apache.catalina.ha.session.DeltaManager.deserializeSessions(byte[]) to discard any received session that has the known dummy session ID. I'll will attach the patch here when it is ready. -- 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 62773] Change DeltaManager to handle session deserialization problems more robustly
https://bz.apache.org/bugzilla/show_bug.cgi?id=62773 Mitch Claborn changed: What|Removed |Added CC||mi...@claborn.net -- 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 62748] Add support for TLS 1.3 (RFC 8446)
https://bz.apache.org/bugzilla/show_bug.cgi?id=62748 --- Comment #1 from Christopher Schultz --- I've been looking at this, and there are several things that need to change: 1. Tomcat itself needs to explicitly support TLSv1.3 due to how the configuration is converted into OpenSSL initialization at runtime 2. tcnative needs to explicitly support TLSv1.3 for the same reasons -- 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 62748] Add support for TLS 1.3 (RFC 8446)
https://bz.apache.org/bugzilla/show_bug.cgi?id=62748 --- Comment #2 from Christopher Schultz --- Created attachment 36174 --> https://bz.apache.org/bugzilla/attachment.cgi?id=36174&action=edit Proposed patch to enable TLSv1.3 -- 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 62748] Add support for TLS 1.3 (RFC 8446)
https://bz.apache.org/bugzilla/show_bug.cgi?id=62748 --- Comment #3 from Christopher Schultz --- Created attachment 36175 --> https://bz.apache.org/bugzilla/attachment.cgi?id=36175&action=edit Proposed patch to enable TLSv1.3 (Tomcat/trunk) -- 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 62748] Add support for TLS 1.3 (RFC 8446)
https://bz.apache.org/bugzilla/show_bug.cgi?id=62748 Christopher Schultz changed: What|Removed |Added Attachment #36174|Proposed patch to enable|Proposed patch to enable description|TLSv1.3 |TLSv1.3 (tcnative/trunk) -- 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 62748] Add support for TLS 1.3 (RFC 8446)
https://bz.apache.org/bugzilla/show_bug.cgi?id=62748 --- Comment #4 from Christopher Schultz --- These two patches allow Tomcat to start up with TLSv1.3 enabled. When performing a connection test, however, I get the following error: $ openssl s_client -connect localhost:8443 [...] SSL-Session: Protocol : TLSv1.3 Cipher: TLS_AES_256_GCM_SHA384 [...] Verify return code: 18 (self signed certificate) Extended master secret: no Max Early Data: 0 --- read R BLOCK GET /[LF]<-- I enter this manually read:errno=54 The connection is terminated. Tomcat logs this to catalina.out: 28-Sep-2018 18:05:40.032 FINE [https-openssl-apr-8443-exec-2] org.apache.tomcat.util.net.SocketWrapperBase.populateReadBuffer Socket: [org.apache.tomcat.util.net.AprEndpoint$AprSocketWrapper@61ede956:140449439191200], Read from buffer: [0] 28-Sep-2018 18:05:40.032 FINE [https-openssl-apr-8443-exec-2] org.apache.coyote.http11.Http11Processor.service Error parsing HTTP request header java.io.IOException: Unexpected error [53] reading data from the APR/native socket [140,449,439,191,200] with wrapper [org.apache.tomcat.util.net.AprEndpoint$AprSocketWrapper@61ede956:140449439191200]. at org.apache.tomcat.util.net.AprEndpoint$AprSocketWrapper.fillReadBuffer(AprEndpoint.java:2533) at org.apache.tomcat.util.net.AprEndpoint$AprSocketWrapper.fillReadBuffer(AprEndpoint.java:2453) at org.apache.tomcat.util.net.AprEndpoint$AprSocketWrapper.read(AprEndpoint.java:2436) at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:729) at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:352) at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:294) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:770) at org.apache.tomcat.util.net.AprEndpoint$SocketProcessor.doRun(AprEndpoint.java:2338) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1135) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.base/java.lang.Thread.run(Thread.java:844) 28-Sep-2018 18:05:40.033 FINE [https-openssl-apr-8443-exec-2] org.apache.coyote.AbstractProcessorLight.process Socket: [org.apache.tomcat.util.net.AprEndpoint$AprSocketWrapper@61ede956:140449439191200], Status in: [OPEN_READ], State out: [CLOSED] I'm not sure what is currently missing. Azat, are you able to patch tcnative and tomcat using my patches and test in your environment? -- 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: r1842288 - /tomcat/site/trunk/xdocs/presentations.xml
Author: schultz Date: Fri Sep 28 22:32:29 2018 New Revision: 1842288 URL: http://svn.apache.org/viewvc?rev=1842288&view=rev Log: Add presentation links. Modified: tomcat/site/trunk/xdocs/presentations.xml Modified: tomcat/site/trunk/xdocs/presentations.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/presentations.xml?rev=1842288&r1=1842287&r2=1842288&view=diff == --- tomcat/site/trunk/xdocs/presentations.xml (original) +++ tomcat/site/trunk/xdocs/presentations.xml Fri Sep 28 22:32:29 2018 @@ -41,6 +41,12 @@ mailing list. State of the Cat - Mark Thomas, http://people.apache.org/~markt/presentations/2018-09-24-state-of-the-cat.pdf";>slides + +Let's Encrypt Apache Tomcat - Christopher Schultz, +https://people.apache.org/~schultz/ApacheCon%20NA%202018/Let's%20Encrypt%20Apache%20Tomcat.pdf">slides, +http://people.apache.org/~schultz/ApacheCon%20NA%202018/";>sample code, +https://feathercast.apache.org/2018/09/25/lets-encrypt-apache-tomcat-christopher-schultz/";>audio + - 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
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 4 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: 38 secs Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true -Dbuild.sysclasspath=only -Dsun.zip.disableMemoryMapping=true 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.13-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.13-SNAPSHOT.jar:/srv/gump/packages/antlr/antlr-3.1.3.jar:/srv/gump/public/workspace/commons-beanutils/dist/commons-beanutils-20180929.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.9-SNAPSHOT.jar:/srv/gump/pu blic/workspace/apache-commons/logging/target/commons-logging-20180929.jar:/srv/gump/public/workspace/apache-commons/logging/target/commons-logging-api-20180929.jar:/srv/gump/public/workspace/google-guava/guava/target/guava-HEAD-jre-SNAPSHOT.jar - Buildfile: /srv/gump/public/workspace/tomcat-7.0.x/build.xml build-prepare: [delete] Deleting directory /srv/gump/public/workspace/tomcat-7.0.x/output/build/temp [mkdir] Created dir: /srv/gump/public/workspace/tomcat-7.0.x/output/build/temp compile-prepare: download-validate: proxyflags: setproxy: testexist: [echo] Testing for /srv/gump/public/workspace/checkstyle/target/checkstyle-8.13-SNAPSHOT.jar downloadfile: validate: [mkdir] Created dir: /srv/gump/public/workspace/tomcat-7.0.x/output/res/checkstyle [checkstyle] Running Checkstyle 8.13-SNAPSHOT on 2708 files [checkstyle] [ERROR] /srv/gump/public/workspace/tomcat-7.0.x/java/org/apache/tomcat/websocket/server/WsHandshakeRequest.java:34: Wrong order for 'org.apache.tomcat.util.res.StringManager' import. [ImportOrder] BUILD FAILED /srv/gump/public/workspace/tomcat-7.0.x/build.xml:539: Got 1 errors and 0 warnings. Total time: 37 seconds - To subscribe to this information via syndicated feeds: - RSS: http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-validate/rss.xml - Atom: http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-validate/atom.xml == Gump Tracking Only === Produced by Apache Gump(TM) version 2.3. Gump Run 2018092907, vmgump-vm3.apache.org:vmgump:2018092907 Gump E-mail Identifier (unique within run) #3. -- Apache Gump http://gump.apache.org/ [Instance: vmgump-vm3] - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[GUMP@vmgump-vm3]: Project tomcat-trunk-test-nio2 (in module tomcat-trunk) failed
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-test-nio2 has an issue affecting its community integration. This issue affects 1 projects, and has been outstanding for 3 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-test-nio2 : 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-test-nio2/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -DEBUG- Dependency on bnd exists, no need to add for property bndlib.jar. -INFO- Failed with reason build failed -INFO- Project Reports in: /srv/gump/public/workspace/tomcat-trunk/output/logs-NIO2 -INFO- Project Reports in: /srv/gump/public/workspace/tomcat-trunk/output/test-tmp-NIO2/logs -WARNING- No directory [/srv/gump/public/workspace/tomcat-trunk/output/test-tmp-NIO2/logs] The following work was performed: http://vmgump-vm3.apache.org/tomcat-trunk/tomcat-trunk-test-nio2/gump_work/build_tomcat-trunk_tomcat-trunk-test-nio2.html Work Name: build_tomcat-trunk_tomcat-trunk-test-nio2 (Type: Build) Work ended in a state of : Failed Elapsed: 23 mins 25 secs Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true -Dbuild.sysclasspath=only -Dsun.zip.disableMemoryMapping=true org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Djunit.jar=/srv/gump/public/workspace/junit/target/junit-4.13-SNAPSHOT.jar -Djava.net.preferIPv4Stack=/srv/gump/public/workspace/tomcat-trunk/true -Dobjenesis.jar=/srv/gump/public/workspace/objenesis/main/target/objenesis-2.7-SNAPSHOT.jar -Dtest.reports=output/logs-NIO2 -Dexecute.test.nio2=true -Dexamples.sources.skip=true -Dbase.path=/srv/gump/public/workspace/tomcat-trunk/tomcat-build-libs -Djdt.jar=/srv/gump/packages/eclipse/plugins/R-4.7.3a-201803300640/ecj-4.7.3a.jar -Dbndlib.jar=/srv/gump/packages/bnd/bndlib-4.0.0/biz.aQute.bndlib-4.0.0.jar -Dcommons-daemon.jar=/srv/gump/public/workspace/apache-commons/daemon/target/commons-daemon-1.1.1-SNAPSHOT.jar -Dtest.openssl.path=/srv/gump/public/workspace/openssl-master/dest-20180929/bin/openssl -Dtest.temp=output/test-tmp-NIO2 -Dtest.accesslog=true -Dexecute.test.nio=false -Dbnd.jar=/srv/gump/packages/bnd/bnd-4.0.0/biz.aQute.bnd-4.0.0.jar -Dexecute.test.apr=false -Dtest.excludePerformance=true -Dtest.relaxTiming=true -Deasymock.jar=/srv/gump/public/workspace/easymock/core/target/easymock-3.7-SNAPSHOT.jar -Dhamcrest.jar=/srv/gump/packages/hamcrest/hamcrest-core-1.3.jar -Dcglib.jar=/srv/gump/packages/cglib/cglib-nodep-2.2.jar test [Working Directory: /srv/gump/public/workspace/tomcat-trunk] CLASSPATH: /usr/lib/jvm/java-8-oracle/lib/tools.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/webapps/examples/WEB-INF/classes:/srv/gump/public/workspace/tomcat-trunk/output/testclasses:/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/tomcat-trunk/output/build/bin/bootstrap.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/bin/tomcat-juli.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/annotations-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/servlet-api.ja r:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/jsp-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/el-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/websocket-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/jaspic-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina-ant.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina-storeconfig.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/tomcat-coyote.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/jasper.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/jasper-el.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina-tribes.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina-ha.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/tomcat-api.jar:/srv/gump/public/work