Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2015-10-12Updating to version 9.3.5.v20151012jetty-9.3.5.v20151012Joakim Erdfelt109-108/+115
2015-10-12Fix defect in DoSFilter where semaphore acquires my be leakedMike Jensen1-13/+19
When trying to release the semaphore in the finally block, 'asyncContext.dispatch()' may throw a "RejectedExecutionException". If this occurs, then the semaphore will never be released. Ultimately the condition will result in all threads blocking to acquire the semaphore as the DoSFilter is continue to be used. https://github.com/eclipse/jetty.project/pull/54 Signed-off-By: jentfoo@gmail.com
2015-10-12Merge branch 'jetty-9.3.x' of ↵Greg Wilkins34-14/+4055
ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project into jetty-9.3.x
2015-10-12Merge branch 'gcloud-session-manager' into jetty-9.3.xJan Bartel34-14/+4055
2015-10-12allow non root user load config from /etc/default/btpka31-1/+1
https://github.com/eclipse/jetty.project/pull/37 Signed-off-by: btpka3 <btpka3@163.com>
2015-10-12Merge branch 'jetty-9.3.x' into gcloud-session-managergcloud-session-managerJan Bartel119-125/+476
2015-10-12execute throuth ssh without hangingbtpka31-2/+2
`ssh root@192.168.1.100 "service jetty restart"` will not exit after start. https://github.com/eclipse/jetty.project/pull/36 Signed-off-by: btpka3 <btpka3@163.com>
2015-10-12Allow JETTY_USER to run without `su`btpka31-1/+1
https://github.com/eclipse/jetty.project/pull/35 Signed-off-by: btpka3 <btpka3@163.com>
2015-10-12Using 8.0.27 releaseJoakim Erdfelt1-11/+1
2015-10-12479584 - WS Session does not contain UpgradeRequest information in ↵Joakim Erdfelt3-0/+27
WebSocketAdapter.onWebSocketConnect callback + Adding missing testcase + Adding missing request information
2015-10-12479537 - Server preface sent after client preface reply.Simone Bordet6-13/+269
Fixed by anticipating the onPreface() callback on server before processing the client preface's SETTINGS frame.
2015-10-09Bumping up apache-jsp to 8.0.27-SNAPSHOTJoakim Erdfelt1-1/+11
2015-10-09Disabling flappy testJoakim Erdfelt1-0/+2
2015-10-09479343 calls to MetaData#orderFragments() with relative ordering adds ↵Jan Bartel2-4/+25
duplicate jars
2015-10-09Updating to 9.3.5-SNAPSHOTJoakim Erdfelt105-105/+105
2015-10-08Merge branch 'master' into gcloud-session-managerJan Bartel21-324/+746
2015-10-07Ensure ServletHolder new initialization state is reset after doStopJan Bartel1-3/+4
2015-10-07Add initialized boolean to ServletHolderWouter Bancken1-13/+16
Signed-off-by: wouter.bancken@aca-it.be
2015-10-07Updating to version 9.3.4.v20151007jetty-9.3.4.v20151007Joakim Erdfelt106-106/+151
2015-10-07478752 - Clarify support for HttpServletRequest.upgrade()Joakim Erdfelt1-20/+1
+ Indicating lack of upgrade() support with ServletException
2015-10-07Fixed test.Simone Bordet1-2/+31
2015-10-07479277 - HttpClient with HTTP/2 transport does not work for "https" URLs.Simone Bordet12-55/+219
Fixed by reworking how ClientConnectionFactories are handled by both HTTP2Client and by HttpClientTransportOverHTTP2, to avoid that the latter wraps the nested factories with SslConnection twice.
2015-10-07478923 - threads stuck at SharedBlockingCallback$Blocker.blockGreg Wilkins6-234/+478
Fixed the failure path so that it also checks for non blocking callbacks and directly calls them
2015-10-07Merge branch 'master' into gcloud-session-managerJan Bartel37-452/+260
2015-10-06Javadoc fixesJoakim Erdfelt5-35/+31
2015-10-06478862 Update to jstl 1.2.5Jan Bartel1-2/+2
2015-10-05478923 Add XML property for blockingTimeoutGreg Wilkins2-0/+5
2015-10-05479026 - Wrong CONNECT request idle timeout.Simone Bordet3-25/+76
Explicitly set the CONNECT request idle timeout instead of inheriting HttpClient's.
2015-10-02Removing redudant close reason trim (handled elsewhere now)Joakim Erdfelt1-1/+1
2015-10-02Removing System.outJoakim Erdfelt2-15/+3
2015-10-02478829 - WebsocketSession not cleaned up / memory leakJoakim Erdfelt12-92/+60
+ WebSocket Connection objects no longer need to hold a reference to the WebSocketSession object eliminating another reference to the WebSocketSession that could hold GC efforts to clean it up
2015-10-02478829 - WebsocketSession not cleaned up / memory leakJoakim Erdfelt17-281/+86
+ Reducing looping references Session -> otherObj -> Session + Using Container LifeCycle bean management more consistently + All sessions are now child beans + A stopped session that hasn't been closed, will auto-close now + Using SessionListener more consistently + Client ConnectionManager no longer tracks Sessions + EventDriver stop cleans up its Session references + Moving all DummyConnection test classes to websocket-common:tests
2015-10-02Update to gcloud 0.0.8Jan Bartel1-1/+1
2015-10-02Ensure webapp classloader used to reinflate session from gcloudatastoreJan Bartel4-30/+74
2015-10-01javadoc fixJoakim Erdfelt1-8/+3
2015-10-01Ensure stale interval set for tests.Jan Bartel6-9/+39
2015-10-01Implement scavenging and more tests.Jan Bartel16-40/+954
2015-09-30Begin scavenge impl.Jan Bartel1-47/+80
2015-09-30Create module and being gcloud datastore session testsJan Bartel16-4/+1120
2015-09-30Remove test credentials from tester.Jan Bartel1-4/+7
2015-09-30First draft of session manager using gcloud datastore.Jan Bartel7-0/+1897
2015-09-30477641 ALPN classes exposed to webapps - fixed typoGreg Wilkins1-1/+1
2015-09-30477641 ALPN classes exposed to webappsGreg Wilkins1-0/+5
2015-09-30478757 - DebugHandler thread name is mangledJoakim Erdfelt4-3/+99
+ Added testcase, and fixed handler for threadname output.
2015-09-30Extracting IBlockheadServerConnection for refactoring prepJoakim Erdfelt17-692/+752
2015-09-30Extracting IBlockheadClient for refactoring prepJoakim Erdfelt8-30/+185
2015-09-30478372 - JavaUtilLog setSourceClass and setSourceMethodGreg Wilkins2-3/+3
Log ignored only if log level is all turn off java util logging in embedded examples
2015-09-30477895 Prevent leak of handles to deleted files after redeployJan Bartel7-28/+89
2015-09-29Forwarding HttpClient properties to HTTP2Client at startup.Simone Bordet4-4/+71
2015-09-29Improved toString().Simone Bordet5-114/+134
Changes imported manually from branch 9.2.x.

Back to the top