From 8c9d26afdb2f342649d5539e8da3588257e8eb31 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 05 2019 09:37:02 +0000 Subject: The body of the message is saved under 'msg', not 'body' Signed-off-by: Pierre-Yves Chibon --- diff --git a/fedmsg-koji-plugin.py b/fedmsg-koji-plugin.py index ae20a56..89e55b5 100644 --- a/fedmsg-koji-plugin.py +++ b/fedmsg-koji-plugin.py @@ -232,7 +232,7 @@ def send_messages(cbtype, *args, **kws): try: msg = fedora_messaging.api.Message( topic="buildsys.{}".format(message['topic']), - body=message['body'] + body=message['msg'] ) fedora_messaging.api.publish(msg) except fedora_messaging.exceptions.PublishReturned as e: