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
watchAll takes an Option parameter sinceResourceVersion which allows specification of the starting point from which events are to be delivered. watchAll in turn calls eventsOnKind which constructs a maybeResourceVersionQuery parameter with which to specify the revision, but it isn't passed into the subsequent context.buildRequest call, so any specified resource version is ignored.
Looking at the similar events method immediately above suggests the call to context.buildRequest in eventsOnKind should be:
val request = context.buildRequest(HttpMethods.GET, rd, None, query = maybeResourceVersionQuery, watch=true)
The text was updated successfully, but these errors were encountered:
watchAll
takes an Option parametersinceResourceVersion
which allows specification of the starting point from which events are to be delivered.watchAll
in turn callseventsOnKind
which constructs amaybeResourceVersionQuery
parameter with which to specify the revision, but it isn't passed into the subsequentcontext.buildRequest
call, so any specified resource version is ignored.Looking at the similar
events
method immediately above suggests the call tocontext.buildRequest
ineventsOnKind
should be:The text was updated successfully, but these errors were encountered: