Skip to content

Commit 7a170e7

Browse files
committed
Increase delay for compute unavailable status
1 parent 5434956 commit 7a170e7

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
@@ -282,7 +282,7 @@ func (c *Client) StalledPods() ([]corev1.Pod, error) {
282282
return nil, err
283283
}
284284
for _, pod := range pods {
285-
if !libtime.OlderThanSeconds(pod.CreationTimestamp.Time, 60) {
285+
if !libtime.OlderThanSeconds(pod.CreationTimestamp.Time, 3*60) {
286286
continue
287287
}
288288
stalledPods = append(stalledPods, pod)

0 commit comments

Comments
 (0)