Skip to content

Commit

Permalink
Adjusting timeouts on a windows test
Browse files Browse the repository at this point in the history
This timeout was fine when working on a dev box but its not quite as
happy in automated testing.
  • Loading branch information
petderek authored and fenxiong committed Mar 1, 2019
1 parent 0af4b1c commit e80ccb8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions agent/engine/ordering_integ_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,17 @@ func TestDependencyHealthCheck(t *testing.T) {
dependency := createTestContainerWithImageAndName(baseImageForOS, "dependency")

parent.EntryPoint = &entryPointForOS
parent.Command = []string{"sleep 5 && exit 1"}
parent.Command = []string{"exit 0"}
parent.DependsOn = []apicontainer.DependsOn{
{
ContainerName: "dependency",
Condition: "HEALTHY",
},
}
parent.Essential = true

dependency.EntryPoint = &entryPointForOS
dependency.Command = []string{"sleep 60 && exit 0"}
dependency.Command = []string{"sleep 90"}
dependency.HealthCheckType = apicontainer.DockerHealthCheckType
dependency.DockerConfig.Config = aws.String(alwaysHealthyHealthCheckConfig)

Expand Down

0 comments on commit e80ccb8

Please sign in to comment.