From: Rishabh Dave Date: Mon, 6 Oct 2025 10:50:30 +0000 (+0530) Subject: qa/cephfs: return only None in _run_umount_lf() X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=33359fa551347784b1fcb88e1381543412c4f1b1;p=ceph.git qa/cephfs: return only None in _run_umount_lf() Since no caller of this method uses the return value "proc", return None. Signed-off-by: Rishabh Dave --- diff --git a/qa/tasks/cephfs/mount.py b/qa/tasks/cephfs/mount.py index 30a115393c3a..0f62c062dc05 100644 --- a/qa/tasks/cephfs/mount.py +++ b/qa/tasks/cephfs/mount.py @@ -514,10 +514,9 @@ class CephFSMountBase(object): log.debug(f'Force/lazy unmounting on client.{self.client_id}') try: - proc = self.client_remote.run( + self.client_remote.run( args=f'sudo umount --lazy --force {self.hostfs_mntpt}', timeout=UMOUNT_TIMEOUT, omit_sudo=False) - return proc except CommandFailedError: if self.is_mounted(): raise