Skip to content

Commit 65ef8e0

Browse files
committed
Merge pull request #2071 from carmstrong/deisctl-bump_timeout
fix(deisctl): bump status pollwait sleeps to 3s
2 parents 9d6a6d8 + 9e86f87 commit 65ef8e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

deisctl/backend/fleet/state.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func checkUnitSubState(name string, desiredState string, outchan chan *schema.Un
3939
if assertUnitSubState(name, desiredState, outchan, errchan) {
4040
return
4141
}
42-
time.Sleep(100 * time.Millisecond)
42+
time.Sleep(3000 * time.Millisecond)
4343
}
4444
}
4545

@@ -112,7 +112,7 @@ func checkUnitState(name string, desiredState string, outchan chan *schema.Unit,
112112
if assertUnitState(name, desiredState, outchan, errchan) {
113113
return
114114
}
115-
time.Sleep(100 * time.Millisecond)
115+
time.Sleep(3000 * time.Millisecond)
116116
}
117117
}
118118

0 commit comments

Comments
 (0)