Skip to content

Commit

Permalink
should not print any config info to prevent config info leaked (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
tianxiaoliang authored Jun 29, 2020
1 parent 4b83c04 commit ca794d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ func (m *Manager) updateEvent(e *event.Event) error {
if e == nil || e.EventSource == "" || e.Key == "" {
return errors.New("nil or invalid event supplied")
}
openlogging.GetLogger().Infof("event received %s", e)
openlogging.Info("config update event received")
switch e.EventType {
case event.Create, event.Update:
m.configMapMux.Lock()
Expand Down

0 comments on commit ca794d5

Please sign in to comment.