We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f248bbb commit cb4937aCopy full SHA for cb4937a
1 file changed
pipe/memorylimit.go
@@ -58,7 +58,7 @@ func killAtLimit(byteLimit uint64, eventHandler func(e *Event)) memoryWatchFunc
58
return
59
case <-t.C:
60
rss, err := stage.GetRSSAnon(ctx)
61
- if err != nil {
+ if err != nil && err != errProcessInfoMissing {
62
consecutiveErrors++
63
if consecutiveErrors >= 2 {
64
eventHandler(&Event{
0 commit comments