diff options
author | Patrick Donnelly <pdonnell@redhat.com> | 2024-05-02 04:06:54 +0200 |
---|---|---|
committer | Patrick Donnelly <pdonnell@redhat.com> | 2024-05-07 14:19:27 +0200 |
commit | afcbfc040b56779e58563f715f26a0fe25e9f916 (patch) | |
tree | 7889cb180120109cdd1b891fce77bed7406c7f3a /qa/tasks/cephfs/mount.py | |
parent | qa: simplify update_attrs and only update relevant keys (diff) | |
download | ceph-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.py | 2 |
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. |