Merge pull request #2218 from charltonaustin/fix_set_to_Set

Fixing api usage.
This commit is contained in:
Charlton Austin 2016-12-07 13:28:01 -05:00 committed by GitHub
commit 9720efbdb6

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