Also update the filter rule
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
This commit is contained in:
parent
1a91c9a91e
commit
8c6162d9e6
1 changed files with 2 additions and 1 deletions
|
@ -169,7 +169,8 @@ def queue_message(cbtype, *args, **kws):
|
|||
# Don't publish these uninformative rpm.sign messages if there's no actual
|
||||
# sigkey present. Koji apparently adds a dummy sig value when rpms are
|
||||
# first imported and there's no need to spam the world about that.
|
||||
if topic == 'rpm.sign' and body.get('info', {}).get('sigkey') == '':
|
||||
if topic == 'rpm.sign' and (body.get('info', {}).get('sigkey') == '' or
|
||||
body.get('sigkey') == ''):
|
||||
return
|
||||
|
||||
# Last thing to do before publishing: scrub some problematic fields
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue