From 2c2782b8654324c3e9d818ea0eb92d3f5405c7a2 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Tue, 16 Apr 2024 15:36:01 -0400 Subject: [PATCH] qa: return run_shell process for waiters or other uses. Signed-off-by: Patrick Donnelly --- qa/tasks/cephfs/mount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/cephfs/mount.py b/qa/tasks/cephfs/mount.py index ba4874cc92d..659ee8a0e4e 100644 --- a/qa/tasks/cephfs/mount.py +++ b/qa/tasks/cephfs/mount.py @@ -1580,7 +1580,7 @@ class CephFSMount(object): if kwargs.pop('sudo', False): kwargs['args'].insert(0, 'sudo') kwargs['omit_sudo'] = False - self.run_shell(**kwargs) + return self.run_shell(**kwargs) def getfattr(self, path, attr, **kwargs): """ -- 2.39.5