./hack/update-codegen.sh

Kubernetes-commit: d15b2893341854ce69e58c18f0899e9c0cf61f33
This commit is contained in:
Lukasz Szaszkiewicz
2025-10-16 22:40:29 +02:00
committed by Kubernetes Publisher
parent f3f7a3c99d
commit c98bec5cec

View File

@@ -83,6 +83,17 @@ func (c *Clientset) Tracker() testing.ObjectTracker {
return c.tracker
}
// IsWatchListSemanticsSupported informs the reflector that this client
// doesn't support WatchList semantics.
//
// This is a synthetic method whose sole purpose is to satisfy the optional
// interface check performed by the reflector.
// Returning true signals that WatchList can NOT be used.
// No additional logic is implemented here.
func (c *Clientset) IsWatchListSemanticsUnSupported() bool {
return true
}
var (
_ clientset.Interface = &Clientset{}
_ testing.FakeClient = &Clientset{}