From afcbfc040b56779e58563f715f26a0fe25e9f916 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Wed, 1 May 2024 22:06:54 -0400 Subject: [PATCH] qa: pass kwargs to mount from remount So we can pass mntargs. 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 2711f6376d30d..61d8d5cb3da67 100644 --- a/qa/tasks/cephfs/mount.py +++ b/qa/tasks/cephfs/mount.py @@ -581,7 +581,7 @@ class CephFSMountBase(object): self.update_attrs(**kwargs) - retval = self.mount(mntopts=mntopts, check_status=check_status) + retval = self.mount(mntopts=mntopts, check_status=check_status, **kwargs) # avoid this scenario (again): mount command might've failed and # check_status might have silenced the exception, yet we attempt to # wait which might lead to an error. -- 2.39.5