We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5434956 commit 7a170e7Copy full SHA for 7a170e7
pkg/lib/k8s/pod.go
@@ -282,7 +282,7 @@ func (c *Client) StalledPods() ([]corev1.Pod, error) {
282
return nil, err
283
}
284
for _, pod := range pods {
285
- if !libtime.OlderThanSeconds(pod.CreationTimestamp.Time, 60) {
+ if !libtime.OlderThanSeconds(pod.CreationTimestamp.Time, 3*60) {
286
continue
287
288
stalledPods = append(stalledPods, pod)
0 commit comments