From: Sage Weil Date: Wed, 17 Feb 2021 18:47:45 +0000 (-0500) Subject: orchestra/daemon/state: do not pass fsid property to run() later X-Git-Tag: 1.1.0~1^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1617%2Fhead;p=teuthology.git orchestra/daemon/state: do not pass fsid property to run() later Signed-off-by: Sage Weil --- diff --git a/teuthology/orchestra/daemon/state.py b/teuthology/orchestra/daemon/state.py index 3a6a17213..fd9baa541 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): """