Skip to content

Commit 0a1d84c

Browse files
authored
fix: remove spaces in map keys (#257)
1 parent 62159f7 commit 0a1d84c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

controllers/logging/event_controller.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ func (p *loggingPredicate) logEvent(e runtime.Object) bool {
163163
"reason", evt.Reason,
164164
"timestamp", evt.LastTimestamp,
165165
"type", evt.Type,
166-
"involvedObject ", evt.InvolvedObject,
167-
"source ", evt.Source,
166+
"involvedObject", evt.InvolvedObject,
167+
"source", evt.Source,
168168
)
169169
} else {
170170
m := structs.Map(evt)

0 commit comments

Comments
 (0)