summaryrefslogtreecommitdiff
path: root/ick2/actions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ick2/actions.py')
-rw-r--r--ick2/actions.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/ick2/actions.py b/ick2/actions.py
index 69be88f..4281e24 100644
--- a/ick2/actions.py
+++ b/ick2/actions.py
@@ -643,10 +643,9 @@ class NotifyAction(Action): # pragma: no cover
recipients = params["notify"]
- # log = cc.get_log(build_id)
- # log = log.decode("utf-8")
- # log = "\n".join(log.splitlines()[-1000])
- log = "Log elided. FIXME"
+ log = cc.get_log(build_id)
+ log = log.decode("utf-8")
+ log = "\n".join(log.splitlines()[-1000])
notify = {
"recipients": recipients,
@@ -654,7 +653,7 @@ class NotifyAction(Action): # pragma: no cover
"log": log,
}
- # cc.notify(notify)
+ cc.notify(notify)
env.report(0, "Notified about build {} ending\n".format(build_id))