diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-07-04 12:24:43 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-04 12:24:43 +0200 |
commit | 427d1a3184818622b165581bec219603ee8fd181 (patch) | |
tree | bce6599b9008166127447b19f32cc99ab20cf510 /bin | |
parent | 299b954115dc073317b8d302e74ff1e8c6b5ade7 (diff) | |
download | jenkins.debian.net-427d1a3184818622b165581bec219603ee8fd181.tar.xz |
For now: Revert "reproducible: remote scheduler: also tell whether there is going to be noise or silence after the scheduling"
This reverts commit 299b954115dc073317b8d302e74ff1e8c6b5ade7.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_remote_scheduler.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py index 1f7b6f77..86f235b3 100755 --- a/bin/reproducible_remote_scheduler.py +++ b/bin/reproducible_remote_scheduler.py @@ -121,15 +121,13 @@ for pkg in packages: blablabla = '✂…' if len(' '.join(pkgs)) > 257 else '' packages_txt = ' packages ' if len(pkgs) > 1 else ' package ' -trailing = ' - artifacts will be preserved' if artifacts else '' -trailing += ' - there will be no notification at the end' if not notify else '' -trailing += ' - notify when the build start too' if debug_url else '' +artifacts_txt = ' - artifacts will be preserved' if artifacts else '' message = str(len(ids)) + packages_txt + 'scheduled in ' + suite + ' by ' + \ requester if reason: message += ' (reason: ' + reason + ')' -message += ': ' + ' '.join(pkgs)[0:256] + blablabla + trailing +message += ': ' + ' '.join(pkgs)[0:256] + blablabla + artifacts_txt # these packages are manually scheduled, so should have high priority, |