From 2edb5a9496dbedc0c778eb969decf7dd75544fe2 Mon Sep 17 00:00:00 2001 From: hyokeun Date: Thu, 6 Jul 2017 09:31:48 +0900 Subject: [PATCH] BUGFIX: missing count increment Change-Id: I21093fa34b0b6d88775d973b3ced2e491887d055 --- job_create_snapshot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/job_create_snapshot.py b/job_create_snapshot.py index 0b373c0..062f8bb 100755 --- a/job_create_snapshot.py +++ b/job_create_snapshot.py @@ -84,6 +84,7 @@ def trigger_image_creation(trigger_data): for repo in trigger_data.keys(): for index, data in enumerate(trigger_data[repo]): trigger_next('image_trigger_%s_%s' % (repo, index), data) + count += 1 # Request number of imager nodes if os.getenv("ONDEMAND_SLAVE_CONFIGURATION_ENABLED", "0") == "1": if count > 0: -- 2.7.4