jsonrpc.py: Don't swallow errors in transact_block().
authorEthan Jackson <ethan@nicira.com>
Fri, 17 Feb 2012 04:26:35 +0000 (20:26 -0800)
committerEthan Jackson <ethan@nicira.com>
Fri, 2 Mar 2012 22:29:46 +0000 (14:29 -0800)
If a server returned an error in response to a request,
transact_block() would ignore it.

Signed-off-by: Ethan Jackson <ethan@nicira.com>
python/ovs/jsonrpc.py
tests/test-ovsdb.py

index 25b0229..1c3f099 100644 (file)
@@ -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
 
index df29fdb..5f3cb99 100644 (file)
@@ -375,6 +375,11 @@ def do_idl(schema_file, remote, *commands):
                 sys.stderr.write("jsonrpc transaction failed: %s"
                                  % os.strerror(error))
                 sys.exit(1)
+            elif reply.error is not None:
+                sys.stderr.write("jsonrpc transaction failed: %s"
+                                 % reply.error)
+                sys.exit(1)
+
             sys.stdout.write("%03d: " % step)
             sys.stdout.flush()
             step += 1