mirror of
https://github.com/ceph/ceph
synced 2024-12-27 14:03:25 +00:00
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:
parent
293c640d74
commit
1414bb3e0e
@ -87,7 +87,8 @@ class FuseMount(CephFSMount):
|
||||
stdin=self._mount_cmd_stdin,
|
||||
stdout=mountcmd_stdout,
|
||||
stderr=mountcmd_stderr,
|
||||
wait=False
|
||||
wait=False,
|
||||
omit_sudo=False
|
||||
)
|
||||
|
||||
return self._wait_and_record_our_fuse_conn(
|
||||
|
Loading…
Reference in New Issue
Block a user