From 99d20307cfa41f9beefa97c5bec2ee00b2d8b620 Mon Sep 17 00:00:00 2001 From: Lalit Date: Wed, 8 May 2024 12:05:42 +0530 Subject: [PATCH] Updating event spam key to allow recording of more unique events --- staging/src/k8s.io/client-go/tools/record/events_cache.go | 1 + 1 file changed, 1 insertion(+) diff --git a/staging/src/k8s.io/client-go/tools/record/events_cache.go b/staging/src/k8s.io/client-go/tools/record/events_cache.go index abba06362aa..bcc48462753 100644 --- a/staging/src/k8s.io/client-go/tools/record/events_cache.go +++ b/staging/src/k8s.io/client-go/tools/record/events_cache.go @@ -77,6 +77,7 @@ func getSpamKey(event *v1.Event) string { event.InvolvedObject.Name, string(event.InvolvedObject.UID), event.InvolvedObject.APIVersion, + event.Type, }, "") }