Fixing api usage.

This commit is contained in:
Charlton Austin 2016-12-07 12:53:07 -05:00
parent 1d0aff9906
commit 9e25fde3a0

View file

@ -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():