From f0ed8adaff01a58af8230db78b2aee626cff43b6 Mon Sep 17 00:00:00 2001 From: Vallari Agrawal Date: Tue, 26 Mar 2024 14:45:50 +0530 Subject: [PATCH] orchestra/daemon/cephadmunit.py: fix start() method In CephadmUnit.start() method, explicitly pass start_cmd as "args" keyword because Remote.run expects keyword arguments. Fixes: https://tracker.ceph.com/issues/65162 Signed-off-by: Vallari Agrawal --- teuthology/orchestra/daemon/cephadmunit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/orchestra/daemon/cephadmunit.py b/teuthology/orchestra/daemon/cephadmunit.py index 9b579da08e..57e5046592 100644 --- a/teuthology/orchestra/daemon/cephadmunit.py +++ b/teuthology/orchestra/daemon/cephadmunit.py @@ -136,7 +136,7 @@ class CephadmUnit(DaemonState): self.restart() return self._start_logger() - self.remote.run(self.start_cmd) + self.remote.run(args=self.start_cmd) def stop(self, timeout=300): """ -- 2.39.5