Merge "Handle unused allowed_remote_exmods in _multi_send"

This commit is contained in:
Jenkins 2014-06-23 09:33:30 +00:00 committed by Gerrit Code Review
commit 889bf73021
1 changed files with 2 additions and 1 deletions

View File

@ -753,7 +753,8 @@ def _multi_send(method, context, topic, msg, timeout=None,
eventlet.spawn_n(method, _addr, context,
_topic, msg, timeout, envelope, _msg_id)
else:
return_val = method(_addr, context, _topic, msg, timeout, envelope)
return_val = method(_addr, context, _topic, msg, timeout,
envelope, allowed_remote_exmods)
return return_val