Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions filter/podStatusFilter.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (f PodStatusFilter) Execute(ctx *Context) bool {
!slices.Contains(ctx.Config.AllowedReasons, ctx.PodReason) {
logrus.Infof(
"skipping reason %s for pod %s as it is not in the reason allow list",
ctx.Container.Reason,
ctx.PodReason,
ctx.Pod.Name)
return true
}
Expand All @@ -65,7 +65,7 @@ func (f PodStatusFilter) Execute(ctx *Context) bool {
slices.Contains(ctx.Config.ForbiddenReasons, ctx.PodReason) {
logrus.Infof(
"skipping reason %s for pod %s as it is in the reason forbid list",
ctx.Container.Reason,
ctx.PodReason,
ctx.Pod.Name)
return true
}
Expand Down