mirror of
https://github.com/outbackdingo/kubernetes.git
synced 2026-02-22 02:41:04 +00:00
Automatic merge from submit-queue Minor change: move watch.ListWatchUntil to its own package [ListWatcher](https://github.com/kubernetes/kubernetes/blob/master/pkg/watch/until.go#L89) will be changed from using api.ListOptions to v1.ListOptions, to be compatible with versioned clientset. This *will* cause import cycle, v1 [imports](https://github.com/kubernetes/kubernetes/blob/master/pkg/api/v1/register.go#L91) watch/version, which imports watch, which imports v1. This PR breaks the potential cycle. This is going to make the migration to using client-go a little bit easier.