diff options
author | Ralph Bean <rbean@redhat.com> | 2017-08-28 18:15:26 +0000 |
---|---|---|
committer | Ralph Bean <rbean@redhat.com> | 2017-08-28 18:15:26 +0000 |
commit | 88fc4617fc7f35c5c9e38ebe9c9f4754a56da996 (patch) | |
tree | 6e5da5d5a4bd2a2ccbd6388dcb058392b9795e99 | |
parent | 6db3f46514728ae96b4febf0393a25c6de5f1031 (diff) | |
download | ansible-88fc4617fc7f35c5c9e38ebe9c9f4754a56da996.tar.gz ansible-88fc4617fc7f35c5c9e38ebe9c9f4754a56da996.tar.xz ansible-88fc4617fc7f35c5c9e38ebe9c9f4754a56da996.zip |
Two missing pieces for that debug patch.
-rw-r--r-- | roles/bodhi2/backend/files/koji-sync-listener.py | 1 | ||||
-rw-r--r-- | roles/bodhi2/backend/tasks/main.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/roles/bodhi2/backend/files/koji-sync-listener.py b/roles/bodhi2/backend/files/koji-sync-listener.py index fff37c496..b7219988b 100644 --- a/roles/bodhi2/backend/files/koji-sync-listener.py +++ b/roles/bodhi2/backend/files/koji-sync-listener.py @@ -47,6 +47,7 @@ def main(fullname, fields, content): if __name__ == '__main__': config = fedmsg.config.load_config() logging.config.dictConfig(config['logging']) + fedmsg.meta.make_processors(**config) topic = 'io.pagure.prod.pagure.issue.edit' for _, _, topic, msg in fedmsg.tail_messages(topic=topic): # Extract some useful information for debugging diff --git a/roles/bodhi2/backend/tasks/main.yml b/roles/bodhi2/backend/tasks/main.yml index f33e0a271..5f01d0972 100644 --- a/roles/bodhi2/backend/tasks/main.yml +++ b/roles/bodhi2/backend/tasks/main.yml @@ -26,6 +26,7 @@ - python-scandir - python2-productmd - compose-utils + - python-fedmsg-meta-fedora-infrastructure tags: - packages - bodhi |