Skip to content

Commit

Permalink
engine: Increase start and create timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelkarp committed Feb 3, 2017
1 parent 95dd837 commit 6a9584a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agent/engine/docker_container_engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ const (
// ListContainersTimeout is the timeout for the ListContainers API.
ListContainersTimeout = 10 * time.Minute
pullImageTimeout = 2 * time.Hour
createContainerTimeout = 3 * time.Minute
startContainerTimeout = 1*time.Minute + 30*time.Second
createContainerTimeout = 4 * time.Minute
startContainerTimeout = 3 * time.Minute
stopContainerTimeout = 30 * time.Second
removeContainerTimeout = 5 * time.Minute
inspectContainerTimeout = 30 * time.Second
Expand Down

0 comments on commit 6a9584a

Please sign in to comment.