diff options
Diffstat (limited to 'src/python/grpcio/tests/qps/client_runner.py')
-rw-r--r-- | src/python/grpcio/tests/qps/client_runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio/tests/qps/client_runner.py b/src/python/grpcio/tests/qps/client_runner.py index a36c30ccc0..1ede7d2af1 100644 --- a/src/python/grpcio/tests/qps/client_runner.py +++ b/src/python/grpcio/tests/qps/client_runner.py @@ -89,9 +89,9 @@ class ClosedLoopClientRunner(ClientRunner): def start(self): self._is_running = True + self._client.start() for _ in xrange(self._request_count): self._client.send_request() - self._client.start() def stop(self): self._is_running = False |