From f15ff7849b2f5b793e1c8aa6657c1d431e125bbf Mon Sep 17 00:00:00 2001 From: Varsha Prasad Narsing Date: Fri, 25 Aug 2023 14:44:47 -0400 Subject: [PATCH] test DCO --- handler/enqueue_annotation.go | 1 + 1 file changed, 1 insertion(+) diff --git a/handler/enqueue_annotation.go b/handler/enqueue_annotation.go index b5798c3..9b06ea6 100644 --- a/handler/enqueue_annotation.go +++ b/handler/enqueue_annotation.go @@ -89,6 +89,7 @@ var _ crtHandler.EventHandler = &EnqueueRequestForAnnotation{} // Create implements EventHandler func (e *EnqueueRequestForAnnotation) Create(_ context.Context, evt event.CreateEvent, q workqueue.RateLimitingInterface) { + fmt.Println("handler annotations") if ok, req := e.getAnnotationRequests(evt.Object); ok { q.Add(req) }