From b3acc0d4513023ad415719387b0a62b9e42b2a10 Mon Sep 17 00:00:00 2001 From: xinwen Date: Mon, 13 Dec 2021 17:58:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8E=BB=E6=8E=89=20get=5Fdocker=5Fmem?= =?UTF-8?q?=5Fusage=5Fif=5Flimit=20=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/common/utils/common.py | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/common/utils/common.py b/apps/common/utils/common.py index fb50009b2..e5b9de4fd 100644 --- a/apps/common/utils/common.py +++ b/apps/common/utils/common.py @@ -281,7 +281,6 @@ def get_docker_mem_usage_if_limit(): return ((usage_in_bytes - inactive_file) / limit_in_bytes) * 100 except Exception as e: - logger.debug(f'Get memory usage by docker limit: {e}') return None