aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/jdisc/http/server/jetty
Commit message (Collapse)AuthorAgeFilesLines
* Fail with correct status code on invalid methodBjørn Christian Seime2022-02-091-1/+11
|
* Merge pull request #20960 from vespa-engine/bjorncs/connection-logØyvind Grønnesby2022-01-301-5/+21
|\ | | | | Add issuer and fingerprint of peer certificate to connection log
| * Add issuer and fingerprint of peer certificate to connection logBjørn Christian Seime2022-01-271-5/+21
| |
* | Log time spent shutting down JettyBjørn Christian Seime2022-01-281-3/+6
|/
* Use refer() overload with contextBjørn Christian Seime2022-01-211-1/+1
|
* keep methods package-privateArne H Juul2021-12-151-1/+1
|
* minimal implementation of "ignore some user agents"Arne H Juul2021-12-142-5/+23
|
* Remove unused methodBjørn Christian Seime2021-12-131-18/+0
|
* Remove use of deprecated methodBjørn Christian Seime2021-12-131-5/+3
|
* Handle write race between handler response and error responseBjørn Christian Seime2021-12-131-68/+105
| | | | | Check if an error response is written before committing response on initial content channel write.
* Reapply "Remove Servlet integration from container-core [run-systemtest]""Bjørn Christian Seime2021-12-0315-885/+17
|
* Revert "Remove Servlet integration from container-core [run-systemtest]"Jon Marius Venstad2021-12-0315-17/+885
|
* fixup! Remove Servlet integration from container-coreBjørn Christian Seime2021-12-021-2/+0
|
* Remove Servlet integration from container-coreBjørn Christian Seime2021-12-0215-883/+17
|
* Fix missing user principal in access logsBjørn Christian Seime2021-11-242-3/+6
|
* Deprecate metrics 'http.status.[401|403]'Bjørn Christian Seime2021-11-232-2/+3
|
* Add status code as dimension to response metricsBjørn Christian Seime2021-11-232-5/+16
|
* Use concurrent map for adders + simplify request=>dimensions mappingBjørn Christian Seime2021-11-232-177/+176
|
* Delay registration of read listener until failure wiring is completeBjørn Christian Seime2021-11-222-11/+29
| | | | | | Handle exceptions from getInputStream() and setReadListener() equally to exceptions from listener's onError(). By delaying registration the completion of finishedFuture will trigger an error response immediately.
* Fail response writing if unable to register listenerBjørn Christian Seime2021-11-161-2/+10
|
* Add position and arrayOffset, when writing from ByteBufferJon Marius Venstad2021-10-311-1/+1
|
* Update 2020 Oath copyrights.gjoranv2021-10-271-1/+1
|
* Update 2019 Oath copyrights.gjoranv2021-10-272-2/+2
|
* Fail servlet output stream writer once request is finished with failureBjørn Christian Seime2021-10-112-6/+12
| | | | | | Fail out any queued response content once request has been failed out through callback from Jetty's AsyncListener interface. Improve naming of methods in ServletResponseController.
* Upgrade Jetty to 9.4.44Bjørn Christian Seime2021-10-111-0/+2
|
* Merge pull request #19452 from vespa-engine/bjorncs/jetty-async-listenerBjørn Christian Seime2021-10-077-352/+257
|\ | | | | Refactor async completion logic for read and write path [run-systemtest]
| * Ensure writer is closed while holding lockBjørn Christian Seime2021-10-071-33/+33
| | | | | | | | Handler can inject its response content if lock is not held between write and close.
| * Refactor async completion logic for read and write pathBjørn Christian Seime2021-10-077-352/+257
| | | | | | | | Ensure that failure from request read, write or async context correctly terminates request processing.
* | Update Verizon Media copyright notices.gjoranv2021-10-0712-12/+12
| |
* | Update 2019 Yahoo Holdings copyright notices.gjoranv2021-10-071-1/+1
| |
* | Update 2018 copyright notices.gjoranv2021-10-072-2/+2
| |
* | Update 2017 copyright notices.gjoranv2021-10-0731-31/+31
|/
* - GC unused AsyncCompleteListener.javaHenning Baldersheim2021-10-062-60/+37
| | | | - Avoid using anonymous constructor.
* Attach contextHenning Baldersheim2021-10-062-4/+9
|
* Add comment about incorrect error handling.Henning Baldersheim2021-10-011-0/+4
|
* Improve logging of Jetty configurationBjørn Christian Seime2021-09-301-6/+8
|
* Determine Jetty threadpool size locallyBjørn Christian Seime2021-09-301-2/+3
|
* Handle implicit TLS being disabledBjørn Christian Seime2021-08-171-1/+1
|
* Revert "Merge pull request #18772 from vespa-engine/revert-18759-bjorncs/http2"Bjørn Christian Seime2021-08-171-43/+52
| | | | | This reverts commit 4b5d08ebfd7456a820d6eec25704a27d56612b69, reversing changes made to fed02e0b81cedd76962da597d73462d0d23e0bf3.
* Revert "Bjorncs/http2"Bjørn Christian Seime2021-08-171-52/+43
|
* Only setup HTTP/2 clear text factory if enabledBjørn Christian Seime2021-08-161-1/+3
| | | | This reverts commit d0e6cbfef4e0966bf4ee39fd12e3885bf8ff24ef.
* Deduplicate logic for setting up connection factoriesBjørn Christian Seime2021-08-161-40/+36
|
* Add connection factory for HTTP/2 over clear textBjørn Christian Seime2021-08-161-4/+15
|
* Respect thresholds for max requests/time for HTTP/2 connectionsBjørn Christian Seime2021-08-092-21/+28
|
* Add san dns rfc822 cert field in connection logMorten Tokle2021-06-141-0/+11
|
* Keep rate control, as it only applies to invalid framesJon Marius Venstad2021-06-101-1/+0
|
* More aggressive HTTP connection settingsJon Marius Venstad2021-06-101-0/+4
|
* Fix: set idle timeout based on configBjørn Christian Seime2021-06-081-1/+1
|
* Add connector config for HTTP/2 streamsBjørn Christian Seime2021-06-031-4/+4
|
* Report idle timeout as 500 instead of 503Bjørn Christian Seime2021-06-032-0/+9
| | | | | HTTP/2 stream idle timeouts are more common and clients should get a better indication that the stream has timed out.