From 9fa4f30bcd775a720b10b49fd4072f1e84fc39dd Mon Sep 17 00:00:00 2001 From: tengqm Date: Fri, 16 Oct 2015 11:38:20 -0400 Subject: [PATCH] Fix client constructor for zaqar-bench The client version is not an optional argument for constructing zaqar client instance. This patch adds 1.1 as the default version. Change-Id: I8f51b1f4d6e55882309586b21fdf7940ca0f6dce --- zaqar/bench/conductor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zaqar/bench/conductor.py b/zaqar/bench/conductor.py index a6f03e3e4..bfba5bec6 100644 --- a/zaqar/bench/conductor.py +++ b/zaqar/bench/conductor.py @@ -39,7 +39,7 @@ def _print_verbose_stats(name, stats): def _reset_queues(): - cli = client.Client(CONF.server_url) + cli = client.Client(CONF.server_url, 1.1) for i in range(CONF.num_queues): # TODO(kgriffs): DRY up name generation so it is done