Skip to content

Commit

Permalink
fix(queue) do not log every item that is being queued
Browse files Browse the repository at this point in the history
This can potentially lead to leaking of secrets and other sensitive
information in the logs.

Fro m #439
  • Loading branch information
hbagdi authored Oct 30, 2019
1 parent 9d0c485 commit c4abfb2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion internal/ingress/task/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ func (t *Queue) Enqueue(obj interface{}) {
}

ts := time.Now().UnixNano()
glog.V(3).Infof("queuing item %v", obj)
key, err := t.fn(obj)
if err != nil {
glog.Errorf("%v", err)
Expand Down

0 comments on commit c4abfb2

Please sign in to comment.