diff options
author | Aaron Conole <aconole@redhat.com> | 2020-05-07 10:34:25 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-05-26 14:16:58 -0400 |
commit | e1b474af6bccee152fcdaa247e743d924348a71c (patch) | |
tree | b81b9dec341b6860b370d0dbe0b7f384b2970bac | |
parent | ac1ebcc8ba307f4eaeb249959c98fa5fb9ac2f15 (diff) | |
download | sos-e1b474af6bccee152fcdaa247e743d924348a71c.tar.gz |
[openvswitch] add support for OpenFlow 1.4 and 1.5
The bridge protocol support has been extended for some time,
so ensure that we actually pull this protocol information
if it is configured that way.
Signed-off-by: Aaron Conole <aconole@redhat.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/report/plugins/openvswitch.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sos/report/plugins/openvswitch.py b/sos/report/plugins/openvswitch.py index 08ab730f..29e6c35f 100644 --- a/sos/report/plugins/openvswitch.py +++ b/sos/report/plugins/openvswitch.py @@ -129,7 +129,9 @@ class OpenVSwitch(Plugin): "OpenFlow10", "OpenFlow11", "OpenFlow12", - "OpenFlow13" + "OpenFlow13", + "OpenFlow14", + "OpenFlow15" ] # List protocols currently in use, if any |