Explorar el Código

Merge pull request #42251 from thaJeztah/fix_testinspect

Fix flaky TestInspect
Brian Goff hace 4 años
padre
commit
dd14dbd53d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      integration/service/inspect_test.go

+ 1 - 1
integration/service/inspect_test.go

@@ -88,7 +88,7 @@ func fullSwarmServiceSpec(name string, replicas uint64) swarmtypes.ServiceSpec {
 				Image:           "busybox:latest",
 				Labels:          map[string]string{"container-label": "container-value"},
 				Command:         []string{"/bin/top"},
-				Args:            []string{"-u", "root"},
+				Args:            []string{"-d", "5"},
 				Hostname:        "hostname",
 				Env:             []string{"envvar=envvalue"},
 				Dir:             "/work",