summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/test/java/com
Commit message (Collapse)AuthorAgeFilesLines
* Remove the jdisc_http_service module.gjoranv2021-03-2345-7032/+0
| | | | - It has been merged into container-core.
* Remove duplicate headersJon Bratseth2021-03-181-2/+1
|
* Add copyright headersJon Bratseth2021-03-181-1/+2
|
* Remove com.yahoo.vespa.jdk8compatBjørn Christian Seime2021-03-101-1/+1
| | | | These types are often accidentally imported, and the JDK8 replacement is typically a one-liner.
* Close after waiting for log entryJon Marius Venstad2021-03-011-1/+1
|
* Block until access log entry is availableBjørn Christian Seime2021-02-262-7/+27
|
* compress previous log file on startup (#16674)Andreas Eriksen2021-02-251-0/+24
|
* Determine local port for requests processed after connector is closedBjørn Christian Seime2021-02-242-5/+8
| | | | | Fallback to configured listen port for requests that are unable to complete before connector shutdown is initiated.
* Disable TLSV1.3Bjørn Christian Seime2021-02-241-1/+2
|
* Allow multiple invocations (in case client retries handshake)Bjørn Christian Seime2021-02-231-6/+7
|
* Read/write race will produce different error message for TLSv1.3Bjørn Christian Seime2021-02-231-1/+4
|
* Ignore test for JDKs where TLSv1.1 is disabledBjørn Christian Seime2021-02-231-4/+6
|
* Revert "Handle alternative error message for incompatible TLS protocol version"Bjørn Christian Seime2021-02-191-0/+2
|
* Handle alternative error message for incompatible TLS protocol versionBjørn Christian Seime2021-02-191-2/+0
|
* Temporarily disable testBjørn Christian Seime2021-02-191-0/+2
|
* Make expected error message substring more genericBjørn Christian Seime2021-02-191-1/+1
| | | | Actual error message is platform dependent
* Merge pull request #16586 from vespa-engine/bjorncs/jdisc-connection-logBjørn Christian Seime2021-02-192-13/+28
|\ | | | | List complete exception chain for ssl handshake failure in connection…
| * List complete exception chain for ssl handshake failure in connection logBjørn Christian Seime2021-02-192-13/+28
| |
* | Expect TLSv1.3 in connection logBjørn Christian Seime2021-02-181-1/+1
| |
* | Update test as TLSv1.3 is now allowedBjørn Christian Seime2021-02-181-1/+1
|/
* Use cheaper EC based crypto materialBjørn Christian Seime2021-02-091-7/+7
| | | | Shaves ~3 seconds from test runtime
* Use separate name per logger threadBjørn Christian Seime2021-02-051-5/+5
|
* Make queue size of log file handler configurableBjørn Christian Seime2021-02-031-5/+5
| | | | | | Add new config parameter for connection log and request log. Scale queue size on vcpu in config model. Use LinkedBlockingQueue instead of ArrayBlockingQueue.
* Simplify unit testsBjørn Christian Seime2021-01-271-18/+7
|
* Merge pull request #16228 from vespa-engine/freva/same-siteValerij Fredriksen2021-01-261-8/+19
|\ | | | | Support SameSite in cookies
| * Support SameSite in cookiesValerij Fredriksen2021-01-261-8/+19
| |
* | Revert "Revert "Refactor LogfileHandler [run-systemtests]""Morten Tokle2021-01-261-11/+5
|/
* Revert "Refactor LogfileHandler [run-systemtests]"Bjørn Christian Seime2021-01-251-5/+11
|
* Write connection log entry directly to output streamBjørn Christian Seime2021-01-252-32/+36
|
* Move file handling logic to logthreadMorten Tokle2021-01-251-9/+3
|
* Queue close,flush and rotate operationsMorten Tokle2021-01-251-2/+2
|
* Add newline after serialized log entry in LogFileHandlerBjørn Christian Seime2021-01-231-1/+1
|
* Revert "Add missing new line"Bjørn Christian Seime2021-01-231-1/+1
| | | | This reverts commit 532e8963819d4ef4d7ee1af2614d3217fc247c9f.
* Add missing new lineMorten Tokle2021-01-231-1/+1
|
* Move log formatting to writer threadMorten Tokle2021-01-222-40/+46
|
* Remove unused members and remove unnecessary throw declarationBjørn Christian Seime2021-01-221-10/+2
|
* Revert "Revert "Remove locks in access logging [run-systemtest]""Morten Tokle2021-01-221-8/+10
|
* Revert "Revert "Access log optimizations [run-systemtest]""Bjørn Christian Seime2021-01-229-202/+187
|
* Revert "Access log optimizations [run-systemtest]"Morten Tokle2021-01-229-187/+202
|
* Revert "Remove locks in access logging [run-systemtest]"Morten Tokle2021-01-221-10/+8
|
* Remove formatter, always 'messageOnly'Morten Tokle2021-01-211-5/+5
|
* Remove StreamHandler inheritanceMorten Tokle2021-01-211-3/+5
|
* Replace AccessLogEntry with non-blocking RequestLogEntryBjørn Christian Seime2021-01-216-195/+166
| | | | | | | Keep AccessLogEntry as interface for adding extra information in handlers, but use the new RequestLogEntry for access log serialization. Introduce new interface RequestLog that AccessLog class implements (to simplify unit testing). Rename AccessLogInterface to RequestLogHandler. Remove unused class AccessLogSampler.
* Introduce RequestLog interfaceBjørn Christian Seime2021-01-216-30/+44
|
* Deduplicat unit testBjørn Christian Seime2021-01-201-43/+24
|
* Support zstd based compression in LogFileHandlerBjørn Christian Seime2021-01-202-17/+50
| | | | Enable zstd compression for connection log
* Improve thread-safety of LogFileHandlerBjørn Christian Seime2021-01-201-31/+21
|
* Merge pull request #16090 from vespa-engine/bjorncs/jdisc-connection-logBjørn Christian Seime2021-01-191-44/+117
|\ | | | | Bjorncs/jdisc connection log
| * Verify content of connection log in HttpServerTestBjørn Christian Seime2021-01-181-44/+117
| | | | | | | | Also extend existing test methods for proxy-protocol and ssl handshake failure metrics to test content of connection log.
* | Improve json formatting performanceMorten Tokle2021-01-181-9/+9
|/