aboutsummaryrefslogtreecommitdiff
path: root/stream_test.go
AgeCommit message (Collapse)AuthorFilesLines
2024-03-02Enable perfsprint linter; fix up lint issues (#1727)Gravatar Oleksandr Redko 1-1/+2
2022-09-15Deprecate Go 1.15 (#1379)Gravatar Aoang 1-3/+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-12-13Use %w to wrap errors (#1175)Gravatar Erik Dubbelboer 1-2/+2
2019-11-16Run golangci-lint using a Github ActionGravatar Erik Dubbelboer 1-1/+1
2019-10-16Speed up testing by running tests in parallelGravatar Erik Dubbelboer 1-0/+4
2016-06-10Simplified PipeConns - now they properly handle the case when reader side is ↵Gravatar Aliaksandr Valialkin 1-6/+29
closed
2016-06-10Use fasthttp.PipeConns instead of io.Pipe in StreamReaderGravatar Aliaksandr Valialkin 1-7/+8
This improves StreamReader performance by more than 2x.
2016-02-13Test Close on NewStreamReaderGravatar Aliaksandr Valialkin 1-0/+54
2015-12-09Added SetBodyStreamWriter for streaming response bodyGravatar Aliaksandr Valialkin 1-0/+24