diff options
Diffstat (limited to 'vswitches')
-rw-r--r-- | vswitches/ovs_vanilla.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vswitches/ovs_vanilla.py b/vswitches/ovs_vanilla.py index 36ad6054..acea4ecb 100644 --- a/vswitches/ovs_vanilla.py +++ b/vswitches/ovs_vanilla.py @@ -42,7 +42,7 @@ class OvsVanilla(IVSwitch): def __init__(self): #vswitchd_args = VSWITCHD_CONST_ARGS - vswitchd_args = ["unix:%s" % VSwitchd.getDbSockPath()] + vswitchd_args = ["unix:%s" % VSwitchd.get_db_sock_path()] vswitchd_args += settings.getValue('VSWITCHD_VANILLA_ARGS') self._vswitchd = VSwitchd(vswitchd_args=vswitchd_args, expected_cmd="db.sock: connected") |