Skip to content

Commit 86b7541

Browse files
committed
Increase compute unavailable timeout to 5 minutes
1 parent 4c38f9c commit 86b7541

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/lib/k8s/pod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ func (c *Client) StalledPods() ([]kcore.Pod, error) {
305305
return nil, err
306306
}
307307
for _, pod := range pods {
308-
if !libtime.OlderThanSeconds(pod.CreationTimestamp.Time, 3*60) {
308+
if !libtime.OlderThanSeconds(pod.CreationTimestamp.Time, 5*60) {
309309
continue
310310
}
311311
stalledPods = append(stalledPods, pod)

0 commit comments

Comments
 (0)