From 1ec3ed8939b4e98fa772a29908c5e3f904795b25 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 17 Feb 2021 13:47:45 -0500 Subject: [PATCH] orchestra/daemon/state: do not pass fsid property to run() later Signed-off-by: Sage Weil --- teuthology/orchestra/daemon/state.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teuthology/orchestra/daemon/state.py b/teuthology/orchestra/daemon/state.py index 3a6a17213d..fd9baa5419 100644 --- a/teuthology/orchestra/daemon/state.py +++ b/teuthology/orchestra/daemon/state.py @@ -23,13 +23,13 @@ class DaemonState(object): """ self.remote = remote self.command_args = command_args - self.command_kwargs = command_kwargs self.role = role self.cluster, self.type_ = self.role.split('.')[0:2] self.id_ = id_ self.log = command_kwargs.get('logger', log) - self.fsid = command_kwargs.get('fsid') + self.fsid = command_kwargs.pop('fsid', None) self.proc = None + self.command_kwargs = command_kwargs def check_status(self): """ -- 2.39.5