浏览代码

integration-cli: swarm.RestartNode(); don't load busybox again

The daemon was already created and started with the busybox
image loaded, so there's no need to load the image again.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 5 年之前
父节点
当前提交
8fc23588f1
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      internal/test/daemon/swarm.go

+ 1 - 1
internal/test/daemon/swarm.go

@@ -36,7 +36,7 @@ func (d *Daemon) RestartNode(t testingT) {
 	}
 	// avoid networking conflicts
 	d.Stop(t)
-	d.StartWithBusybox(t, startArgs...)
+	d.Start(t, startArgs...)
 }
 
 // StartAndSwarmInit starts the daemon (with busybox) and init the swarm