diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-12-02 14:11:02 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-09 11:28:32 +0100 |
commit | 5ca30ca93c8ebd5d659c2f0d4cb71c2062b1607a (patch) | |
tree | 77af0283608e6f3ce0e1159e877907ff7b402e28 /bin | |
parent | d5ac801b0f9ae629b9468309011785271acb717c (diff) | |
download | jenkins.debian.net-5ca30ca93c8ebd5d659c2f0d4cb71c2062b1607a.tar.xz |
reproducible: remote_scheduler: also force notification when asking for artifacts
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_remote_scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py index 756aa4b1..331f7b36 100755 --- a/bin/reproducible_remote_scheduler.py +++ b/bin/reproducible_remote_scheduler.py @@ -236,7 +236,7 @@ artifacts_value = 1 if artifacts else 0 reason = reason if reason else None if notify_on_start: do_notify = 2 -elif notify: +elif notify or artifacts: do_notify = 1 else: do_notify = 0 |