qa/cephfs: set omit_sudo=False when ceph-fuse is executed

Although setting "omit_sudo" to "False" will have no impact on ceph-fuse
mount command during testing with teuthology (because teuthology code
does nothing whether omit_sudo is set or unset), let's set it to False
so that there's no chance for any bugs in future.

Signed-off-by: Rishabh Dave <ridave@redhat.com>
This commit is contained in:
Rishabh Dave 2022-08-09 14:17:42 +05:30
parent 293c640d74
commit 1414bb3e0e

View File

@ -87,7 +87,8 @@ class FuseMount(CephFSMount):
stdin=self._mount_cmd_stdin, stdin=self._mount_cmd_stdin,
stdout=mountcmd_stdout, stdout=mountcmd_stdout,
stderr=mountcmd_stderr, stderr=mountcmd_stderr,
wait=False wait=False,
omit_sudo=False
) )
return self._wait_and_record_our_fuse_conn( return self._wait_and_record_our_fuse_conn(