Commit Graph

14716 Commits

Author SHA1 Message Date
Jan Bartel d808094e82 Issue #1829 2017-09-19 14:32:34 +10:00
Joakim Erdfelt eee41174f2 Merge branch 'release-9.4.7' into jetty-9.4.x 2017-09-18 14:06:44 -07:00
Joakim Erdfelt 3d5f06d05d Merge pull request #1827 from olamy/bugfix/bom-coordinates
fix some Maven artifact coordinates in the bom
2017-09-18 05:20:02 -07:00
olivier lamy ff11a3edd4 fix groupdId for websocket-servlet and comment jetty-monitor as it is not part of the build anymore
Signed-off-by: olivier lamy <olamy@webtide.com>
2017-09-18 17:12:47 +10:00
olivier lamy f0df30cc94 fix artifactIds for fcgi
Signed-off-by: olivier lamy <olamy@webtide.com>
2017-09-18 17:06:03 +10:00
Joakim Erdfelt d9865a02ba Updating to version 9.4.8-SNAPSHOT 2017-09-14 08:44:27 -07:00
WalkerWatch 6176f67049 Additional updates for #1813. 2017-09-14 11:13:02 -04:00
Joakim Erdfelt 80fb788d0c Updating to version 9.4.7.v20170914 2017-09-14 07:35:18 -07:00
Simone Bordet 12220c2a66 Fixes #1813 - Update Garbage Collection documentation to reflect JDK9 changes. 2017-09-14 13:46:10 +02:00
Simone Bordet aa4a77794e Issue #212 - HttpClient to support pluggable AuthenticationStore.
AuthenticationStore must be initialized eagerly.
2017-09-14 13:00:52 +02:00
Simone Bordet 93d0d324ab Formatting cleanup and fixed javadocs. 2017-09-14 11:56:45 +02:00
Simone Bordet ce9be291d3 Fixes #212 - HttpClient to support pluggable AuthenticationStore. 2017-09-14 11:29:39 +02:00
Jan Bartel 7ad415b9b8 Issue #1819 2017-09-14 16:07:00 +10:00
Joakim Erdfelt 562834d903 Updating jetty-version-maven-plugin 2017-09-13 16:34:51 -07:00
Simone Bordet 6c471264d7 Issue #1818 - Infinispan tests failing with JDK 9.
Disabled tests for JDK 9.
2017-09-13 15:42:49 +02:00
Simone Bordet 0bfc5a140f Issue #1817 - JstlTest failure with JDK 9.
Disabled test for JDK 9.
2017-09-13 15:42:18 +02:00
Simone Bordet 8d03e97205 Fixes #1816 - HttpClientTest.testClientCannotValidateServerCertificate() hangs with JDK 9.
Now upgrading the connection also in cased of filled=-1, so that the
new nested connection attempts to read/write and will see a failure
(although not the SslHandshakeException).
2017-09-13 15:26:44 +02:00
Simone Bordet ac2776259c Issue #1815 - WebSocket test failures.
Ignored unstable tests.
2017-09-13 10:46:22 +02:00
Greg Wilkins 3399fd36dc Fix #1814 Java Version utility 2017-09-13 15:20:43 +10:00
Jan Bartel 5aa92552bd Issue #1809 2017-09-13 11:42:17 +10:00
Greg Wilkins bdc7242de6 reformatted code LdapLoginModule.java 2017-09-13 11:09:58 +10:00
Joakim Erdfelt 187f37dc5f Merge pull request #1801 from eclipse/issue-1797-multi-release-jars
Issue #1797 - Safety checks for Java 8 and Multi-Release JARs during bytecode scanning
2017-09-12 16:06:55 -07:00
WalkerWatch b9b284b3f6 Updated documentation for symlinks. Resolves #1812 2017-09-12 15:31:41 -04:00
Simone Bordet a0cb4247e7 Fixes #1718 - QueuedThreadPool not exposed on JMX.
Now MBeanContainer keeps track of the parent/child component relationship.

MBeans are registered for a pair (parent, child) and unregistered only
for the same pair.

For example, Server owns a ThreadPool and a Connector; in turn the
Connector adds the Server ThreadPool as an unmanaged component to itself.
The ThreadPool is registered as MBean with the pair (Server, ThreadPool).
When the Connector is stopped and removed from the component tree,
MBeanContainer sees a removal event for the pair (ServerConnector, ThreadPool).
But since that pair was not the one that triggered the registration of
the MBean, the MBean is not unregistered.
2017-09-12 00:47:02 +02:00
Simone Bordet c402f8d5fa Fixed test after #1804. 2017-09-11 17:03:22 +02:00
Simone Bordet b078c910a7 Code cleanup: replaced anonymous inner classes with lambdas. 2017-09-11 17:02:32 +02:00
Simone Bordet 172bf27922 Fixed test after #1805. 2017-09-08 15:40:34 +02:00
Simone Bordet d9ade0678c Added JMX support. 2017-09-08 10:52:40 +02:00
Simone Bordet c1a4153861 Fixes #1805 - ReservedThreadExecutor should start ReservedThreads lazily.
Removed doStart() that was eagerly starting ReservedThreads.
Other small code cleanups.
2017-09-08 10:52:40 +02:00
Simone Bordet 5d8c605d96 Updated logic to calculate the minimum number of threads. 2017-09-08 10:52:40 +02:00
Simone Bordet 930f5e0b09 Rearranged inner classes at the end of the file. 2017-09-08 10:52:40 +02:00
Simone Bordet 5b31e17aa5 Fixes #1804 - Make EndPoint creation and destroy a non-blocking task.
Now both tasks extends NonBlockingAction.
2017-09-08 10:52:40 +02:00
Simone Bordet 2ff3a80800 Fixes #1798 - JMXify EatWhatYouKill. 2017-09-08 10:52:40 +02:00
Simone Bordet 006dee439f Code cleanups.
Added TODOs to remember the link between the HTTP2Connection
fill callback and HTTP2ConnectionFactory.reservedThreads.
2017-09-08 10:52:40 +02:00
Simone Bordet ec9a4ecdc1 Fixed #1796 - ReservedThreadExecutor defaulting to capacity=1 only.
Using getMaxThreads() instead of getThreads().
2017-09-08 10:52:40 +02:00
Joakim Erdfelt 929e800111 Issue #1797 - Safety checks for Java 9 and Multi-Release JARs during bytecode scanning
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
2017-09-07 09:34:09 -07:00
Joakim Erdfelt fb86b8e54f Merge branch 'jetty-9.4.x' of github.com:eclipse/jetty.project into jetty-9.4.x 2017-09-07 08:55:54 -07:00
Jan Bartel 8db5cc4f96 Issue #1795 2017-09-07 08:59:03 +10:00
WalkerWatch 804cabfbe6 Documentation formatting fix. Resolves #1744. 2017-09-06 17:25:05 -04:00
WalkerWatch bd4eb6655b Merge branch 'jetty-9.4.x' of github.com:eclipse/jetty.project into jetty-9.4.x 2017-09-06 17:12:11 -04:00
WalkerWatch 1a89dff8db Documentation updates for #1793. 2017-09-06 17:11:39 -04:00
Joakim Erdfelt aa85bca2a9 Minor test cleanup 2017-09-06 13:49:20 -07:00
Joakim Erdfelt 45a4b87a33 Fixes #1662 - Removing harmless NPE on websocket compress with null frame payload 2017-09-06 10:57:28 -07:00
Joakim Erdfelt 28d2f30769 Fixing compilation error 2017-09-06 10:24:47 -07:00
Joakim Erdfelt db77305550 Fixes #1756 - improving javadoc for WebSocketPolicy max text/binary message size 2017-09-06 10:22:12 -07:00
Joakim Erdfelt acc7c97969 Removing @Rule LeakTrackingBufferPoolRule - bad threading behavior / false positives 2017-09-06 10:16:32 -07:00
Joakim Erdfelt 752fda19b9 Fixes #1767 - removing debug output from testing 2017-09-06 10:14:49 -07:00
Jan Bartel df0e6d7f43 Issue #1793 2017-09-06 18:00:31 +10:00
Jan Bartel d8e035ba0d Issue #1794 2017-09-06 18:00:31 +10:00
Greg Wilkins 22bc4f79e2 remove conscrypt testing 2017-09-06 12:39:32 +10:00