From 00e0e1b48c8c62b3d9b3f0e17397296eb4b5fe45 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 25 Apr 2022 20:41:35 +0300 Subject: fix: don't send log at all Sponsored-by: author --- ick2/actions.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ick2/actions.py b/ick2/actions.py index 4281e24..16695e5 100644 --- a/ick2/actions.py +++ b/ick2/actions.py @@ -643,9 +643,10 @@ 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 = cc.get_log(build_id) + # log = log.decode("utf-8") + # log = "\n".join(log.splitlines()[-1000]) + log = "Log elided. FIXME" notify = { "recipients": recipients, -- cgit v1.2.1