Learn more about these different git repos.
Other Git URLs
758818d
@@ -68,6 +68,7 @@
Args:
message (munch.Munch): A fedmsg about a new result.
"""
+ message = message.get('body', message)
log.debug('Processing message "%s"', message)
self._invalidate_cache(message)
self._publish_decision_changes(message)
I ran into these in our stg container.
The message is in a little envelope, and we have to take it out.
:thumbsup:
Pull-Request has been merged by ralph
Hmm just wondering why there isn't a corresponding test change?
Is this happening at a layer outside what we are testing?
Yeah, I didn't realize that the message is inside body. I guess I was misled by this example
body
http://fedora-fedmsg.readthedocs.io/en/latest/topics.html#taskotron-result-new
I think we also need to update the waiverdb consumer with this change and I'll create a new PR and fix the tests to use the right format of the message.
See #99
I ran into these in our stg container.
The message is in a little envelope, and we have to take it out.