Skip to content

Commit 9b235c4

Browse files
committed
retry
1 parent 66c989d commit 9b235c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/python/api/tnode.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def runCmd(self, cmd, timeout=None):
7070
# Start netplugin process on vagrant node
7171
def startNetplugin(self, args=""):
7272
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"
73+
command = "sudo " + self.binpath + "/netplugin -plugin-mode docker -vlan-if eth2 -cluster-store " + os.environ["CONTIV_CLUSTER_STORE"] + " " + args + "> /tmp/netplugin.log 2>&1"
7474
self.npThread = threading.Thread(target=ssh_exec_thread, args=(ssh_object, command))
7575
# npThread.setDaemon(True)
7676
self.npThread.start()

0 commit comments

Comments
 (0)