Merge "Fix dump_ovs_flows crashing when no nodes are passed"
authorJose Lausuch <jose.lausuch@ericsson.com>
Tue, 21 Feb 2017 11:52:34 +0000 (11:52 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Tue, 21 Feb 2017 11:52:34 +0000 (11:52 +0000)
modules/opnfv/utils/ovs_logger.py

index d650eb9..7777a9a 100644 (file)
@@ -101,19 +101,13 @@ class OVSLogger(object):
         if timestamp is None:
             timestamp = time.strftime("%Y%m%d-%H%M%S")
 
-        for controller_client in controller_clients:
-            self.ofctl_dump_flows(controller_client,
-                                  timestamp=timestamp)
-            self.vsctl_show(controller_client,
-                            timestamp=timestamp)
-
-        for compute_client in compute_clients:
-            self.ofctl_dump_flows(compute_client,
-                                  timestamp=timestamp)
-            self.vsctl_show(compute_client,
-                            timestamp=timestamp)
+        clients = controller_clients + compute_clients
+        for client in clients:
+            self.ofctl_dump_flows(client, timestamp=timestamp)
+            self.vsctl_show(client, timestamp=timestamp)
 
         if related_error is not None:
             dumpdir = os.path.join(self.ovs_dir, timestamp)
+            self.__mkdir_p(dumpdir)
             with open(os.path.join(dumpdir, 'error'), 'w') as f:
                 f.write(related_error)