We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22856b8 commit 95fdfb0Copy full SHA for 95fdfb0
_delphi_utils_python/delphi_utils/validator/report.py
@@ -103,6 +103,8 @@ def log(self, logger=None):
103
checks_suppressed = self.num_suppressed,
104
warnings = len(self.raised_warnings),
105
phase="validation")
106
+ # Threshold for slack alerts if warnings are excessive,
107
+ # Currently extremely strict, set by observation of 1 month's logs
108
excessive_warnings = self.total_checks > 0 and \
109
(len(self.raised_warnings) > 200 or \
110
len(self.raised_warnings) / self.total_checks > 0.015)
0 commit comments