Skip to content

Commit

Permalink
fix: lint error with new workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
grmartin committed Jun 26, 2024
1 parent 8cd5b9d commit 49e75ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commerce_coordinator/settings/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
},
Expand Down

0 comments on commit 49e75ac

Please sign in to comment.