diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-22 15:08:57 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-22 15:08:57 +0200 |
commit | e0be156e44d68f6c7c5f316f740c3baef1aa3966 (patch) | |
tree | dba6a426152a5381098adf66720b409c953bdf24 | |
parent | f0083b6c06235e52788e2c08e9ef61049c45f72a (diff) | |
download | jenkins.debian.net-e0be156e44d68f6c7c5f316f740c3baef1aa3966.tar.xz |
reproducible: also notify irc if only old_ftbfs were scheduled
-rwxr-xr-x | bin/reproducible_scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index eab44aba..06021591 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -544,7 +544,7 @@ def scheduler(arch): message += ' packages in total.' # only notifiy irc if there were packages scheduled in any suite for x in SUITES: - if len(untested[x])+len(new[x])+len(old[x]) > 0: + if len(untested[x])+len(new[x])+len(old[x])+len(old_ftbfs[x]) > 0: log.info(message) irc_msg(message) break |