Joakim Erdfelt
c4a8e684c8
Fixes #1039 - AttributeNormalizer should not track null paths
2016-10-26 10:31:12 -07:00
Joakim Erdfelt
7328742ae5
Fixes #1038 - ${WAR} should be favored over other attributes, like ${jetty.base}
2016-10-26 10:23:58 -07:00
Joakim Erdfelt
1151964d74
Adding jdk9 profile
2016-10-25 15:15:46 -07:00
Simone Bordet
33eb768d69
Fixes #1029 - Restore Request.setHttpVersion().
...
Also cleaned up the asymmetry in MetaData between the setter
(setHttpVersion()) and the getter (getVersion()).
2016-10-25 15:45:29 +02:00
Jan Bartel
638045764e
Issue #1018
2016-10-21 16:32:45 +11:00
Joakim Erdfelt
76992139f8
Merge branch 'jetty-9.2.x' into jetty-9.3.x
2016-10-20 15:11:25 -07:00
Joakim Erdfelt
3bfc914889
More attempts at jacoco exclusions
2016-10-20 14:14:50 -07:00
Joakim Erdfelt
2d650512bf
Skipping jacoco collection on build/test/support/integration modules
2016-10-20 12:48:32 -07:00
Joakim Erdfelt
a733d2768c
Setting jacoco jenkins publisher to report only on org.eclipse.jetty.*
2016-10-20 12:39:47 -07:00
Joakim Erdfelt
bb0ac62328
Correcting for Jenkinsfile "stage" syntax warning
...
The Warning Message:
"Using the 'stage' step without a block argument is deprecated"
2016-10-20 11:29:24 -07:00
Joakim Erdfelt
b8127399d7
Tweaking jacoco includes/excludes in pom.xml
2016-10-20 11:28:26 -07:00
Joakim Erdfelt
09abf0b4bd
Revert "Correcting Jenkinsfile warning"
...
This reverts commit d4abbb0499
.
2016-10-20 11:09:24 -07:00
Joakim Erdfelt
d4abbb0499
Correcting Jenkinsfile warning
...
+ Using the 'stage' step without a block argument is deprecated
2016-10-20 10:03:18 -07:00
Joakim Erdfelt
6ded652dae
Tweaking jacoco includes/excludes
2016-10-20 09:31:00 -07:00
Joakim Erdfelt
fccffdb526
Merge branch 'release-9.3.13' into jetty-9.3.x
2016-10-20 09:25:57 -07:00
Vladimir Bukhtoyarov
bbce9df664
Enhancement for detection of insufficient threads ( #1010 )
...
* Issue #586 Enhancement for detection of insufficient threads
Do not count acceptors and selectors at server level if connector uses own dedicated thread pool
Signed-off-by: vladimir.bukhtoyarov <jsecoder@mail.ru>
2016-10-20 12:11:23 +02:00
Joakim Erdfelt
0162140e09
Merge branch 'jetty-9.2.x' into jetty-9.3.x
2016-10-19 16:16:59 -07:00
Joakim Erdfelt
91cbb067f8
Limiting jacoco reports to only org.eclipse.jetty classes
2016-10-19 14:36:59 -07:00
Joakim Erdfelt
d1d3996bf5
Merge pull request #1005 from SimonDallaway/LdapLoginModule
...
fix for userRdnAttribute value != username
2016-10-19 14:08:54 -07:00
Joakim Erdfelt
b459c4118b
Using new recommended timeout() syntax
2016-10-19 13:15:39 -07:00
Joakim Erdfelt
acd632b204
Merge branch 'shauway-jetty-9.3.x-docs-ssl' into jetty-9.3.x
2016-10-19 13:08:47 -07:00
Joakim Erdfelt
c512c3167a
Merge branch 'jetty-9.3.x-docs-ssl' of git://github.com/shauway/jetty.project into shauway-jetty-9.3.x-docs-ssl
2016-10-19 13:08:20 -07:00
Joakim Erdfelt
52e81a5ef8
Merge branch 'jetty-9.2.x' into jetty-9.3.x
2016-10-19 10:56:49 -07:00
Joakim Erdfelt
c3a07945cc
Adding more reports to build
2016-10-19 10:07:26 -07:00
Joakim Erdfelt
91e5fb2ce5
Adding jacoco report generation and publishing
2016-10-19 08:51:45 -07:00
Simone Bordet
be93a1ff31
Fixes #292 - NPE in SslConnectionFactory newConnection.
...
ConnectionFactories may be added after the connector is started.
As such there is always the possibility that creating a new
connection fails because there is no available ConnectionFactory for
that protocol.
Rather than failing with an IllegalStateException instead of a
NullPointerException, we now check at connector start whether the
SslConnectionFactory is properly configured.
This should catch 99% of the cases, where the connector is
misconfigured, reporting the error earlier and explicitly
(connector does not start) rather later and hidden (connection cannot
be created).
2016-10-17 19:14:01 +02:00
Simone Bordet
ad8bdde4f3
Code cleanup.
2016-10-17 18:51:28 +02:00
Simone Bordet
f9e3c535d6
Issue #989 - InputStreamResponseListener.get() throws with HTTP/2 following redirect.
...
Added test case, but it passes cleanly.
2016-10-17 15:46:43 +02:00
Simone Bordet
f305bf8a2d
Made the test more robust.
2016-10-17 15:34:08 +02:00
Greg Wilkins
6adfc324ad
remove blockfor #1009
2016-10-17 11:43:58 +11:00
Joakim Erdfelt
ade14ba34b
Updating to version 9.3.14-SNAPSHOT
2016-10-14 11:33:51 -07:00
Joakim Erdfelt
c3a78e70a8
Updating to version 9.3.13.v20161014
2016-10-14 10:39:37 -07:00
Joakim Erdfelt
6c3c24e7dd
Updating jetty-version-maven-plugin declaration
2016-10-14 10:34:18 -07:00
Joakim Erdfelt
7a2548ea72
Fixing script
2016-10-14 10:33:33 -07:00
Greg Wilkins
cb74cb8c1f
fixed racew in unit test
2016-10-14 15:40:11 +11:00
Denis Bardadym
8eb56edc8a
Fix typo in DefaultServlet ( #988 )
...
Fixes #952
Signed-off-by: Denis Bardadym <bardadymchik@gmail.com>
2016-10-14 14:18:16 +11:00
Greg Wilkins
937a2d44f7
LSB Tags #926
2016-10-14 13:58:20 +11:00
SimonDallaway
51567be439
fix for userRdnAttribute value != username
...
Signed-off-by: SimonDallaway <simon.dallaway@datacom.co.nz>
2016-10-14 13:20:04 +13:00
Simone Bordet
12e907d162
Fixes #999 - Create a Flight Recorder module.
2016-10-13 11:57:37 +02:00
Jan Bartel
5a85c33e6e
Issue #1000
...
Refine warning message.
2016-10-13 15:25:45 +11:00
Jan Bartel
37ec4160bb
Issue #1000
2016-10-13 15:06:47 +11:00
Sergiu Prodan
407111a796
Issue #295 Ensure Jetty Client use of Inflater calls .end() to avoid memory leak
...
Signed-off-by: Sergiu Prodan <p.sergiu92@gmail.com>
2016-10-06 16:12:53 +02:00
Sergiu Prodan
f8b2979a8f
Issue #295 Ensure Jetty Client use of Deflater calls .end() to avoid memory leak ( #986 )
...
* Issue #295 Ensure Jetty Client use of Inflater calls .end() to avoid memory leak
Signed-off-by: Sergiu Prodan <p.sergiu92@gmail.com>
2016-10-06 16:10:37 +02:00
Jesse McConnell
863913b64e
set for dev
2016-09-30 19:05:47 +00:00
Jesse McConnell
b91cc8a4ea
set for release
2016-09-30 18:01:20 +00:00
Jesse McConnell
2d516487ab
set for release
2016-09-30 16:44:52 +00:00
Simone Bordet
38d48395b0
Issue #918 - Support certificates hot reload.
...
Introduced SslContextFactory.reload(Consumer) to perform atomic
reload of SslContextFactory.
2016-09-30 17:48:09 +02:00
Simone Bordet
7471f5c8f2
Code cleanup.
2016-09-30 17:47:52 +02:00
Jesse McConnell
7a3a1006cf
Merge pull request #971 from WalkerWatch/issues/896
...
Update quickstart docs for #896
2016-09-29 11:22:08 -05:00
Jesse McConnell
459506d89b
Merge pull request #970 from WalkerWatch/issues/943
...
Resolves #943
2016-09-29 11:21:58 -05:00