You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.
Perhaps the API changed at some point? It seems you need a watch=true URL parameter to signify a watch query to the server. So the above traceback is because the endpoint was returning a PodList instead of a stream of single objects. Something like
if kwargs.get('stream'):
params = kwargs.setdefault('params', {})
params['watch'] = True
The json objects returned by WatchQuery don't seem to match up with the keys expected in the codebase.
Example code:
Relevant tb:
The text was updated successfully, but these errors were encountered: