mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
jsonrpc.py: Don't swallow errors in transact_block().
If a server returned an error in response to a request, transact_block() would ignore it. Signed-off-by: Ethan Jackson <ethan@nicira.com>
This commit is contained in:
@@ -301,7 +301,10 @@ class Connection(object):
|
||||
reply = None
|
||||
while not error:
|
||||
error, reply = self.recv_block()
|
||||
if reply and reply.type == Message.T_REPLY and reply.id == id_:
|
||||
if (reply
|
||||
and (reply.type == Message.T_REPLY
|
||||
or reply.type == Message.T_ERROR)
|
||||
and reply.id == id_):
|
||||
break
|
||||
return error, reply
|
||||
|
||||
|
Reference in New Issue
Block a user