From aa6ed1bae15f189436c6677a63d8a288b5f100a7 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 Kubernetes-commit: 99d20307cfa41f9beefa97c5bec2ee00b2d8b620 --- tools/record/events_cache.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/record/events_cache.go b/tools/record/events_cache.go index abba0636..bcc48462 100644 --- a/tools/record/events_cache.go +++ b/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, }, "") }