Fixing api usage.
This commit is contained in:
parent
1d0aff9906
commit
9e25fde3a0
1 changed files with 2 additions and 2 deletions
|
@ -45,10 +45,10 @@ class GlobalPrometheusStatsWorker(Worker):
|
|||
|
||||
if features.SECURITY_SCANNER:
|
||||
# Clair repo counts.
|
||||
unscanned_images_gauge.set(
|
||||
unscanned_images_gauge.Set(
|
||||
get_count_of_images_eligible_for_scan(app.config.get('SECURITY_SCANNER_ENGINE_VERSION_TARGET', 2))
|
||||
)
|
||||
images_gauge.set(total_image_count())
|
||||
images_gauge.Set(total_image_count())
|
||||
|
||||
|
||||
def main():
|
||||
|
|
Reference in a new issue