Maksim Fedoseev
Maksim Fedoseev
It seems like now there's an option for this in Transport: [link](https://github.com/golang/net/blob/5d6afe9/http2/transport.go#L109) Feel free to send a PR, if you're interested in adding this functionality.
Hi, @shivanan. In order to look into this I'm going to need a minimalistic server setup similar to yours for reproduction. There is a [test](https://github.com/codesenberg/bombardier/blob/c47debd/bombardier_test.go#L27) however that checks if a...
> I can't see the picture Superwierd. Like I said: > "Last repositories covered" are not being updated Go to [gocover.io](http://gocover.io/), look at the "Last repositories covered" block and you'll...
@vieux, well, the issue is gone now, because service was rebooted, but the bug is probably still there, so, leaving it open in case it pops up again.
Thanks for the report and all of your inputs. Looks like there was a backwards incompatible change in `fasthttp.HostClient`'s behaviour (see valyala/fasthttp#800). That said, I'm not sure if `fasthttp.Client` handles...
I'm afraid `--fasthttp` client doesn't support HTTP/2 at all (see valyala/fasthttp#144). Go's `--http2` client seem to [support of h2c](https://pkg.go.dev/net/[email protected]#:~:text=%22h2c%22%20mode).
I'd be interested in seeing how other tools provide such functionality. Will look into this, but no promises.
@ericsouza provided an example of how this feature is implemented in [drill](https://github.com/fcsonline/drill#drill) tool - benchmarks (described) as (YAML) config. The approach [vegeta](https://github.com/tsenart/vegeta) tool uses is also quite neat - pass...
Another user previously encountered similar issue in #21. In short, currently you'll have to craft the body yourself. It should be possible to implement a feature that would provide something...