summaryrefslogtreecommitdiffstats
path: root/qa/tasks/cephfs/mount.py
diff options
context:
space:
mode:
authorPatrick Donnelly <pdonnell@redhat.com>2024-05-02 04:06:54 +0200
committerPatrick Donnelly <pdonnell@redhat.com>2024-05-07 14:19:27 +0200
commitafcbfc040b56779e58563f715f26a0fe25e9f916 (patch)
tree7889cb180120109cdd1b891fce77bed7406c7f3a /qa/tasks/cephfs/mount.py
parentqa: simplify update_attrs and only update relevant keys (diff)
downloadceph-afcbfc040b56779e58563f715f26a0fe25e9f916.tar.xz
ceph-afcbfc040b56779e58563f715f26a0fe25e9f916.zip
qa: pass kwargs to mount from remount
So we can pass mntargs. Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
Diffstat (limited to '')
-rw-r--r--qa/tasks/cephfs/mount.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/tasks/cephfs/mount.py b/qa/tasks/cephfs/mount.py
index 2711f6376d3..61d8d5cb3da 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.