From bcda1c240925718fb5e9c37459b14e8fe6783d51 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Wed, 23 Aug 2017 19:22:23 +0900 Subject: [PATCH] Fix assertion failure --- src/h2load.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/h2load.cc b/src/h2load.cc index 30f29a89..258f3ede 100644 --- a/src/h2load.cc +++ b/src/h2load.cc @@ -822,8 +822,6 @@ void Client::on_stream_close(int32_t stream_id, bool success, bool final) { ++worker->stats.req_failed; ++worker->stats.req_error; } - // To avoid overflow error - assert(worker->stats.req_done <= worker->max_samples); ++worker->stats.req_done; ++req_done; }