From 86cfad45503461b99c29a4f982159382c1c56179 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Fri, 15 Jan 2016 15:29:11 +0000 Subject: [openvswitch] gather database in 'list' format This changes database dump collection format to 'list' which is a more readable and easy to parse. Based on a change suggested by Prasad Mukhedkar. Resolves: #676. Signed-off-by: Bryn M. Reeves --- sos/plugins/openvswitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py index 8d691dcd..da043a42 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -38,7 +38,7 @@ class OpenVSwitch(Plugin): # to the Open vSwitch server, avoiding hangs when running sos. "ovs-vsctl -t 5 show", # Gather the database. - "ovsdb-client dump" + "ovsdb-client -f list dump" ]) # Gather additional output for each OVS bridge on the host. -- cgit