Steven Hawkins
Steven Hawkins
@vietj @metacosm I've made a few more changes, such as bringing in the WebClient dependency for interceptor handling. However it will speed things along if I can get some help...
@neuropaddy I haven't reproduced this yet. From what I can see, this exception is just being logged - it's not causing the upload to fail, is that correct? This looks...
@sunix we probably just need to filter this - check if the exitCode future is done, if it is then there's no need to call the listener method or log.
@manusa marking as a WIP, since we probably won't make it far with cleaning up the static nature of KubernetesDeserializer, it isn't imperative to make this change just yet.
> Does https://github.com/fabric8io/kubernetes-client/issues/4171 address the issues that this PR tries to fix? No, this pr is more general. It would have addressed #4171 as well as the ability to do...
Replaced by #4109
> However, won't this break our current model backwards compatibility support (i.e. consuming a model from v5.9 in v5.12)? You'd have to keep and deprecate the old style for a...
A full proposal would look like: ``` public @interface Resource { String group(); String kind() default ""; // empty would default to class name String plural() default ""; // empty...
To do this fully anywhere we accept an InputStream, you'd accept a ReadableByteChannel and a boolean blocking parameter, with a similar change for OutputStream. We need to know the channel...
ExecWatchInputStream can be adapted for use with http logic as well.