From 49e75acd540ed56db5cb229a0bfc40aadf07182b Mon Sep 17 00:00:00 2001 From: "Glenn R. Martin" Date: Wed, 26 Jun 2024 12:31:29 -0400 Subject: [PATCH] fix: lint error with new workflows --- commerce_coordinator/settings/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commerce_coordinator/settings/utils.py b/commerce_coordinator/settings/utils.py index 2ea36d91..b5ef1e77 100644 --- a/commerce_coordinator/settings/utils.py +++ b/commerce_coordinator/settings/utils.py @@ -58,7 +58,7 @@ def get_logger_config(logging_env="no_env", 'skip_health_check': { '()': 'django.utils.log.CallbackFilter', # Space before the path is intentional. It forces the match to be from the root of the service. - 'callback': lambda record: ' /health/' not in record.getMessage() and \ + 'callback': lambda record: ' /health/' not in record.getMessage() and ' /health' not in record.getMessage() } },