From b134972035a383a34f4bbe4059591c889d28a8c0 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 24 Oct 2018 21:54:16 +0000 Subject: [PATCH] LocalCephManager.admin_socket: add timeout kwarg This fixes "TypeError: admin_socket() got an unexpected keyword argument 'timeout'". The value is never used. Signed-off-by: Zack Cerza --- qa/tasks/vstart_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/vstart_runner.py b/qa/tasks/vstart_runner.py index 46828429bed..e4cf2500033 100644 --- a/qa/tasks/vstart_runner.py +++ b/qa/tasks/vstart_runner.py @@ -606,7 +606,7 @@ class LocalCephManager(CephManager): proc = self.controller.run([os.path.join(BIN_PREFIX, "ceph")] + list(args), **kwargs) return proc.exitstatus - def admin_socket(self, daemon_type, daemon_id, command, check_status=True): + def admin_socket(self, daemon_type, daemon_id, command, check_status=True, timeout=None): return self.controller.run( args=[os.path.join(BIN_PREFIX, "ceph"), "daemon", "{0}.{1}".format(daemon_type, daemon_id)] + command, check_status=check_status ) -- 2.39.5