Skip to content

Commit

Permalink
Remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
tomleb committed Sep 17, 2024
1 parent 7d2f79a commit fc95f5f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pkg/cache/sql/informer/informer.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ package informer

import (
"context"
"fmt"
"strconv"
"time"

Expand Down Expand Up @@ -110,7 +109,6 @@ func NewInformer(client dynamic.ResourceInterface, fields [][]string, transform
func (i *Informer) ListByOptions(ctx context.Context, lo ListOptions, partitions []partition.Partition, namespace string) (*unstructured.UnstructuredList, int, string, error) {
list, total, continueToken, err := i.ByOptionsLister.ListByOptions(ctx, lo, partitions, namespace)
count := i.listeners.Count()
fmt.Println("HITHERE replacing resourceVersion", list.GetResourceVersion(), count)
list.SetResourceVersion(strconv.Itoa(count))
return list, total, continueToken, err
}
Expand Down

0 comments on commit fc95f5f

Please sign in to comment.