We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66c989d commit 9b235c4Copy full SHA for 9b235c4
scripts/python/api/tnode.py
@@ -70,7 +70,7 @@ def runCmd(self, cmd, timeout=None):
70
# Start netplugin process on vagrant node
71
def startNetplugin(self, args=""):
72
ssh_object = self.sshConnect(self.username, self.password)
73
- command = "sudo " + self.binpath + "/netplugin -plugin-mode docker -vlan-if eth2 -fwd-mode routing -cluster-store " + os.environ["CONTIV_CLUSTER_STORE"] + " " + args + "> /tmp/netplugin.log 2>&1"
+ command = "sudo " + self.binpath + "/netplugin -plugin-mode docker -vlan-if eth2 -cluster-store " + os.environ["CONTIV_CLUSTER_STORE"] + " " + args + "> /tmp/netplugin.log 2>&1"
74
self.npThread = threading.Thread(target=ssh_exec_thread, args=(ssh_object, command))
75
# npThread.setDaemon(True)
76
self.npThread.start()
0 commit comments