From bd7e26b768f0aca0ef2374e79bda58bd7a9d4feb Mon Sep 17 00:00:00 2001 From: Alex Wu Date: Tue, 8 Dec 2020 21:55:10 -0800 Subject: [PATCH] [Autoscaler] Temporarily suppress "Removed stale ip mappings" message. (#12689) --- python/ray/autoscaler/_private/load_metrics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/ray/autoscaler/_private/load_metrics.py b/python/ray/autoscaler/_private/load_metrics.py index d5f3b73e9..fe851a1dd 100644 --- a/python/ray/autoscaler/_private/load_metrics.py +++ b/python/ray/autoscaler/_private/load_metrics.py @@ -87,7 +87,8 @@ class LoadMetrics: unwanted_key, mapping[unwanted_key])) del mapping[unwanted_key] if unwanted: - logger.info( + # TODO (Alex): Change this back to info after #12138. + logger.debug( "LoadMetrics: " "Removed {} stale ip mappings: {} not in {}".format( len(unwanted), unwanted, active_ips))