mirror of
https://github.com/searxng/searxng.git
synced 2025-12-22 19:50:00 +00:00
[fix] openmetrics: value is None if there's no data
This commit is contained in:
@@ -26,7 +26,7 @@ class OpenMetricsFamily: # pylint: disable=too-few-public-methods
|
||||
"""
|
||||
|
||||
for i, data_info_dict in enumerate(self.data_info):
|
||||
if not data_info_dict and data_info_dict != 0:
|
||||
if not data_info_dict or not self.data[i]:
|
||||
continue
|
||||
|
||||
info_representation = ','.join([f"{key}=\"{value}\"" for (key, value) in data_info_dict.items()])
|
||||
|
||||
Reference in New Issue
Block a user