Commit b72c5f10 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

h2load: Fix wrong req_stat updates

parent 7e6eb7e0
...@@ -544,7 +544,8 @@ int Client::submit_request() { ...@@ -544,7 +544,8 @@ int Client::submit_request() {
} }
void Client::process_timedout_streams() { void Client::process_timedout_streams() {
for (auto &req_stat : worker->stats.req_stats) { for (auto &p : streams) {
auto &req_stat = p.second.req_stat;
if (!req_stat.completed) { if (!req_stat.completed) {
req_stat.stream_close_time = std::chrono::steady_clock::now(); req_stat.stream_close_time = std::chrono::steady_clock::now();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment