Skip to content

Commit be11d1e

Browse files
committed
[core] Increase command timeouts
1 parent 3840047 commit be11d1e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

core/controlcommands/mesoscommand.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
)
3232

3333
const (
34-
defaultResponseTimeout = 15 * time.Second
34+
defaultResponseTimeout = 30 * time.Second
3535
)
3636

3737
type MesosCommand interface {

core/environment/transition_configure.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ func (t ConfigureTransition) do(env *Environment) (err error) {
147147
return
148148
}
149149

150-
deploymentTimeout := 15 * time.Second
150+
deploymentTimeout := 35 * time.Second
151151
wfStatus := wf.GetStatus()
152152
if wfStatus != task.ACTIVE {
153153
WORKFLOW_ACTIVE_LOOP:

0 commit comments

Comments
 (0)