From 7ad29f79d4e6df698ad49486d8ccba6a4e317079 Mon Sep 17 00:00:00 2001 From: Chad Austin Date: Sat, 20 Jan 2018 10:25:52 -0800 Subject: [PATCH] temporarily disable the StaleMountsCheck - it's unmounting active mounts Summary: bolinfest has observed `eden doctor` unmounting active mounts, so disable that check until this is resolved. Reviewed By: bolinfest Differential Revision: D6768284 fbshipit-source-id: 21add1fa283f8631055019dae99819d04e179d5e --- eden/cli/doctor.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eden/cli/doctor.py b/eden/cli/doctor.py index 451a9110c6..4120fb1e3f 100644 --- a/eden/cli/doctor.py +++ b/eden/cli/doctor.py @@ -71,7 +71,9 @@ def cure_what_ails_you( # This list is a mix of messages to print to stdout and checks to perform. checks_and_messages: List[Union[str, Check]] = [ - StaleMountsCheck(active_mount_points, mount_table), + # Temporarily disabled while @chadaustin figures out why it unmounts + # active mounts too. + # StaleMountsCheck(active_mount_points, mount_table), ] if is_healthy: checks_and_messages.append(EdenfsIsLatest(config))