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
This commit is contained in:
Chad Austin 2018-01-20 10:25:52 -08:00 committed by Facebook Github Bot
parent 78262a0cf6
commit 7ad29f79d4

View File

@ -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))