@@ -31,27 +31,27 @@ type EnqueueRequestsForCustomIndexField struct {
3131}
3232
3333// Create implements EventHandler
34- func (e * EnqueueRequestsForCustomIndexField ) Create (ctx context.Context , evt event.CreateEvent , q workqueue.RateLimitingInterface ) {
34+ func (e * EnqueueRequestsForCustomIndexField ) Create (ctx context.Context , evt event.CreateEvent , q workqueue.TypedRateLimitingInterface [reconcile. Request ] ) {
3535 e .handle (evt .Object , evt .Object , q )
3636}
3737
3838// Update implements EventHandler
39- func (e * EnqueueRequestsForCustomIndexField ) Update (ctx context.Context , evt event.UpdateEvent , q workqueue.RateLimitingInterface ) {
39+ func (e * EnqueueRequestsForCustomIndexField ) Update (ctx context.Context , evt event.UpdateEvent , q workqueue.TypedRateLimitingInterface [reconcile. Request ] ) {
4040 e .handle (evt .ObjectNew , evt .ObjectNew , q )
4141}
4242
4343// Delete implements EventHandler
44- func (e * EnqueueRequestsForCustomIndexField ) Delete (ctx context.Context , evt event.DeleteEvent , q workqueue.RateLimitingInterface ) {
44+ func (e * EnqueueRequestsForCustomIndexField ) Delete (ctx context.Context , evt event.DeleteEvent , q workqueue.TypedRateLimitingInterface [reconcile. Request ] ) {
4545 e .handle (evt .Object , evt .Object , q )
4646}
4747
4848// Generic implements EventHandler
49- func (e * EnqueueRequestsForCustomIndexField ) Generic (ctx context.Context , evt event.GenericEvent , q workqueue.RateLimitingInterface ) {
49+ func (e * EnqueueRequestsForCustomIndexField ) Generic (ctx context.Context , evt event.GenericEvent , q workqueue.TypedRateLimitingInterface [reconcile. Request ] ) {
5050 e .handle (evt .Object , evt .Object , q )
5151}
5252
5353// handle common implementation to enqueue reconcile Requests for applications
54- func (e * EnqueueRequestsForCustomIndexField ) handle (evtMeta metav1.Object , evtObj runtime.Object , q workqueue.RateLimitingInterface ) {
54+ func (e * EnqueueRequestsForCustomIndexField ) handle (evtMeta metav1.Object , evtObj runtime.Object , q workqueue.TypedRateLimitingInterface [reconcile. Request ] ) {
5555 apps , _ := e .Matcher .Match (evtMeta )
5656 for _ , app := range apps {
5757 q .Add (reconcile.Request {
0 commit comments