diff --git a/lib/common.py b/lib/common.py index 6407f170d..77e0d1aa7 100644 --- a/lib/common.py +++ b/lib/common.py @@ -107,6 +107,8 @@ def teardown_formatted_and_mounted_disk(host, mountpoint): except Exception as e: if i < 4: logging.warning(f"umounting {mountpoint} failed with: {e}, retrying...") + host.ssh(['lsof', '+D', mountpoint]) + host.ssh(['fuser', mountpoint]) time.sleep(5) continue raise e