defer messagebus sync

This commit is contained in:
Mike McLean 2016-05-25 17:11:35 -04:00
parent 42b567b327
commit ac5cbf1682

View file

@ -242,7 +242,7 @@ def send_messages(cbtype, *args, **kws):
return
sender = get_sender()
for message in messages:
sender.send(message, sync=True, timeout=config.getfloat('broker', 'timeout'))
sender.send(message, sync=False, timeout=config.getfloat('broker', 'timeout'))
sender.close(timeout=config.getfloat('broker', 'timeout'))
# koji should do this for us, but just in case...