aboutsummaryrefslogtreecommitdiff
path: root/client_timing_wait_test.go
AgeCommit message (Collapse)AuthorFilesLines
2023-06-13Enable gofumpt linter; format code `gofumpt -w .` (#1576)v1.48.0Gravatar Oleksandr Redko 1-1/+0
2022-09-15Deprecate Go 1.15 (#1379)Gravatar Aoang 1-5/+2
* Dropping support for 1.15. * Replaces Go 1.16 Deprecated functions * Update test build flag * Fix import sort and comment * Update github.com/klauspost/compress to v1.15.9 https://github.com/klauspost/compress improved performance and changed Minimum version is 1.16, this should be the final supported release for Go 1.16 (https://github.com/klauspost/compress/commit/6d0019a95afa3221f7522d1f2eed0033b5e79470) .
2022-04-01Use %v for errors and %q for strings (#1262)v1.35.0Gravatar Erik Dubbelboer 1-5/+5
Mostly in tests.
2021-09-02compatible with new build tag (#1087)Gravatar tyltr 1-0/+1
2020-04-03feat: make client to wait when no free connections (#764)Gravatar Daniel Qian 1-0/+166
* feat: make client to wait when no free connections * feat: make client to wait when no free connections use AcquireTimer to do timeout instead of using context * feat: make client to wait when no free connections Add BenchmarkClientGetEndToEndWaitConn* to test heap allocation in waiting for free connection situation * feat: make client to wait when no free connections Add BenchmarkHTTPClientGetEndToEndWaitConn* to test heap allocation in waiting for free connection situation * feat: make client to wait when no free connections fix bug in BenchmarkHTTPClientGetEndToEndWaitConn* * feat: make client to wait when no free connections fix bug in TestHostClientMaxConnWaitTimeoutSuccess make it wait longer to avoid ErrNoFreeConns on travis-ci * feat: make client to wait when no free connections fix do not compile benchmark(NetHTTP?)ClientGetEndToEndWaitConn if go version < 1.11.x * feat: make client to wait when no free connections fix the bug that if deadline is earlier than MaxConnWaitTimeout, still wait MaxConnWaitTimeout which later than deadline. * feat: make client to wait when no free connections fix race condition in TestHostClientMaxConnWaitTimeoutError * feat: make client to wait when no free connections fix bug in TestHostClientMaxConnWaitTimeoutWithEarlierDeadline