diff --git a/.githubmap b/.githubmap index c82ea3d1d8071..9c4a62dbee74e 100644 --- a/.githubmap +++ b/.githubmap @@ -154,3 +154,4 @@ anthonyeleven Anthony D Atri petrutlucian94 Lucian Petrut dparmar18 Dhairya Parmar nmshelke Nikhilkumar Shelke +neesingh-rh Neeraj Pratap Singh diff --git a/qa/tasks/vstart_runner.py b/qa/tasks/vstart_runner.py index 8601eeee03b2a..29d699a480804 100644 --- a/qa/tasks/vstart_runner.py +++ b/qa/tasks/vstart_runner.py @@ -705,18 +705,18 @@ def __init__(self, ctx, test_dir, client_id, client_keyring_path=None, def _create_mntpt(self): self.client_remote.run(args=f'mkdir -p -v {self.hostfs_mntpt}') - def _run_mount_cmd(self, mntopts, check_status): - retval = super(type(self), self)._run_mount_cmd(mntopts, check_status) + def _run_mount_cmd(self, mntopts, mntargs, check_status): + retval = super(type(self), self)._run_mount_cmd(mntopts, mntargs, + check_status) if retval is None: # None represents success self._set_fuse_daemon_pid(check_status) return retval - def _get_mount_cmd(self, mntopts): - mount_cmd = super(type(self), self)._get_mount_cmd(mntopts) + def _get_mount_cmd(self, mntopts, mntargs): + mount_cmd = super(type(self), self)._get_mount_cmd(mntopts, mntargs) if os.getuid() != 0: mount_cmd += ['--client_die_on_failed_dentry_invalidate=false'] - return mount_cmd @property