Skip to content

Commit c7c8356

Browse files
committed
Increase compute unavailable timeout to 5 minutes
(cherry picked from commit 86b7541)
1 parent c4b246b commit c7c8356

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
@@ -303,7 +303,7 @@ func (c *Client) StalledPods() ([]kcore.Pod, error) {
303303
return nil, err
304304
}
305305
for _, pod := range pods {
306-
if !libtime.OlderThanSeconds(pod.CreationTimestamp.Time, 3*60) {
306+
if !libtime.OlderThanSeconds(pod.CreationTimestamp.Time, 5*60) {
307307
continue
308308
}
309309
stalledPods = append(stalledPods, pod)

0 commit comments

Comments
 (0)