diff options
author | Martin Klozik <martinx.klozik@intel.com> | 2017-03-27 10:42:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-27 10:42:34 +0000 |
commit | b757c8ba94b9d8664808a39d7517a11651cc0188 (patch) | |
tree | 8278a4a0aadfcd908d13dfbd36abaa8ace630a84 /vswitches/ovs.py | |
parent | 725033715118bc318fdd6aa3745c2c07ca714086 (diff) | |
parent | 00ae14186c5292c04766321d02fc7f82668ee066 (diff) |
Merge "vpp: Reporting update related to VPP"
Diffstat (limited to 'vswitches/ovs.py')
-rw-r--r-- | vswitches/ovs.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vswitches/ovs.py b/vswitches/ovs.py index b6d64fb7..12620e22 100644 --- a/vswitches/ovs.py +++ b/vswitches/ovs.py @@ -95,6 +95,14 @@ class IVSwitchOvs(IVSwitch, tasks.Process): """ pass + # Method could be a function + # pylint: disable=no-self-use + def get_version(self): + """See IVswitch for general description + """ + # OVS version can be read offline + return [] + def stop(self): """See IVswitch for general description """ |