We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b4c3485 + 7f17751 commit abe6c4cCopy full SHA for abe6c4c
pkg/watch/watch.go
@@ -93,11 +93,6 @@ func (i *InstrumentedListerWatcher) List(options metav1.ListOptions) (res runtim
93
// Watch is a wrapper func around the cache.ListerWatcher.Watch func. It increases the success/error
94
// counters based on the outcome of the Watch operation it instruments.
95
func (i *InstrumentedListerWatcher) Watch(options metav1.ListOptions) (res watch.Interface, err error) {
96
-
97
- if i.useAPIServerCache {
98
- options.ResourceVersion = "0"
99
- }
100
101
res, err = i.lw.Watch(options)
102
if err != nil {
103
i.metrics.WatchTotal.WithLabelValues("error", i.resource).Inc()
0 commit comments