From cfe64abb8a28df7bee44bf36838a5ba2e0a77930 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 (cherry picked from commit afcbfc040b56779e58563f715f26a0fe25e9f916) --- 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 ed78ae035a965..d4a176c36cc4a 100644 --- a/qa/tasks/cephfs/mount.py +++ b/qa/tasks/cephfs/mount.py @@ -582,7 +582,7 @@ class CephFSMount(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