Merge pull request #35982 from cpuguy83/fix_concurrent_daemon_test_issues
Fix race with concurrent daemon startup in tests Upstream-commit: 92309e34e42aec3a0e041403bdd3c4fc0dc20269 Component: engine
This commit is contained in:
@ -59,9 +59,9 @@ func TestDaemonRestartKillContainers(t *testing.T) {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
var args []string
|
||||
args := []string{"--iptables=false"}
|
||||
if liveRestoreEnabled {
|
||||
args = []string{"--live-restore"}
|
||||
args = append(args, "--live-restore")
|
||||
}
|
||||
|
||||
d.StartWithBusybox(t, args...)
|
||||
|
||||
Reference in New Issue
Block a user