aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/microbenchmarks/bm_chttp2_transport.cc
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2017-07-13 12:29:45 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2017-07-18 17:06:58 -0700
commit06f052b35dd6ea19aa1973bc71c2a9b1cf964b34 (patch)
treea74a3733d382110c34c3644ebd84a81c22f16bd9 /test/cpp/microbenchmarks/bm_chttp2_transport.cc
parent3706308c0f3943a48a194a9b1bd3ba4542f51415 (diff)
Get rid of local window, fix qps worker
Diffstat (limited to 'test/cpp/microbenchmarks/bm_chttp2_transport.cc')
-rw-r--r--test/cpp/microbenchmarks/bm_chttp2_transport.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/cpp/microbenchmarks/bm_chttp2_transport.cc b/test/cpp/microbenchmarks/bm_chttp2_transport.cc
index 3b42c82de2..9193330f78 100644
--- a/test/cpp/microbenchmarks/bm_chttp2_transport.cc
+++ b/test/cpp/microbenchmarks/bm_chttp2_transport.cc
@@ -522,7 +522,6 @@ static void BM_TransportStreamRecv(benchmark::State &state) {
if (!state.KeepRunning()) return;
// force outgoing window to be yuge
s.chttp2_stream()->local_window_delta = 1024 * 1024 * 1024;
- f.chttp2_transport()->local_window = 1024 * 1024 * 1024;
s.chttp2_stream()->announced_window_delta = 1024 * 1024 * 1024;
f.chttp2_transport()->announced_window = 1024 * 1024 * 1024;
received = 0;