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.
2 parents 3da1022 + 411c89f commit f94bb8cCopy full SHA for f94bb8c
flow/util/checkMetadata.py
@@ -80,6 +80,10 @@ def try_number(string):
80
81
if field in metadata.keys():
82
build_value = try_number(metadata[field])
83
+ elif "__warnings__count:" in field:
84
+ # Metric is a warning count. If the value is missing,
85
+ # there were zero warnings
86
+ build_value = 0.0
87
else:
88
print(f"[ERROR] Value not found for {field}.")
89
sys.exit(1)
0 commit comments