Skip to content

Commit

Permalink
tests/tools/fq_runner/kikimr_metrics: avoid failure on missing "value"
Browse files Browse the repository at this point in the history
  • Loading branch information
yumkam committed Oct 10, 2024
1 parent 762a384 commit 870207c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/tests/tools/fq_runner/kikimr_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def find_sensors(self, labels, key_label):
continue
v = lbls.get(key_label, None)
if v is not None:
result[v] = s["value"]
result[v] = s.get("value", None)
return result

def collect_non_zeros(self):
Expand Down

0 comments on commit 870207c

Please sign in to comment.