mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-01 18:58:18 +00:00
Use unversioned.ListOptions in clients.
This commit is contained in:
2
pkg/client/cache/reflector_test.go
vendored
2
pkg/client/cache/reflector_test.go
vendored
@@ -36,7 +36,7 @@ type testLW struct {
|
||||
}
|
||||
|
||||
func (t *testLW) List() (runtime.Object, error) { return t.ListFunc() }
|
||||
func (t *testLW) Watch(options api.ListOptions) (watch.Interface, error) {
|
||||
func (t *testLW) Watch(options unversioned.ListOptions) (watch.Interface, error) {
|
||||
return t.WatchFunc(options.ResourceVersion)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user