From 13330b020433c314cc23830a1bd73262b3deb58d Mon Sep 17 00:00:00 2001 From: Prabhjot Singh Sethi Date: Tue, 27 May 2025 09:43:43 +0000 Subject: [PATCH] Address GetAllKeys and Callback to align using pointers Signed-off-by: Prabhjot Singh Sethi --- table/generic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/table/generic.go b/table/generic.go index ba6181f..67922e5 100644 --- a/table/generic.go +++ b/table/generic.go @@ -145,7 +145,7 @@ func (t *Table[K, E]) ReconcilerGetAllKeys() []any { log.Panicf("got error while fetching all keys %s", err) } for _, k := range list { - keys = append(keys, k.Key) + keys = append(keys, &k.Key) } return []any(keys) }