h2load: Fix bug that initial max concurrent streams was too large
This commit is contained in:
parent
e453759637
commit
ce61f62644
|
@ -84,7 +84,7 @@ Config::Config()
|
||||||
nreqs(1),
|
nreqs(1),
|
||||||
nclients(1),
|
nclients(1),
|
||||||
nthreads(1),
|
nthreads(1),
|
||||||
max_concurrent_streams(-1),
|
max_concurrent_streams(1),
|
||||||
window_bits(30),
|
window_bits(30),
|
||||||
connection_window_bits(30),
|
connection_window_bits(30),
|
||||||
rate(0),
|
rate(0),
|
||||||
|
|
Loading…
Reference in New Issue