Skip to content

Commit 393d54f

Browse files
committed
review fixes
1 parent 7b71c03 commit 393d54f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

internal/k8s/kubernetes.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -501,8 +501,6 @@ func IsNonEvictible(p *v1.Pod) bool {
501501
// a cordoned node since they tolerate the node.kubernetes.io/unschedulable taint.
502502
func HasWildcardToleration(p *v1.Pod) bool {
503503
for _, t := range p.Spec.Tolerations {
504-
fmt.Println(p.Name, t.Key == "" && t.Operator == v1.TolerationOpExists)
505-
fmt.Println(t)
506504
if t.Key == "" && t.Operator == v1.TolerationOpExists {
507505
return true
508506
}

0 commit comments

Comments
 (0)