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
If you do not wish to receive bookmarks, then set ListOptions.allowWatchBookmarks=false - otherwise all Watches will default to requesting bookmarks. If supported by the api-server, bookmarks will avoid 410 exceptions and keep the watch alive longer. If you are using the mock framework with explicit uris, you may need to update your expected watch endpoints to include the parameter allowWatchBookmarks=true
Refactoring #3547: due to an abstraction layer added over okHttp, the following api changes were made:
OperationContext withOkHttpClient was removed, it should be needed to be directly called
PatchType.getMediaType was replaced with PatchType.getContentType
ExecListener no longer passes the okhttp3.Response to onOpen. onFailure will pass a simplified ExecListener.Response when possible.
okhttp3.TlsVersions has been replaced by io.fabric8.kubernetes.client.http.TlsVersion
HttpClientUtils.createHttpClient(config, additionalConfig) has been deprecated and now returns an OkHttpClientImpl
The client is no longer adaptable to an OkHttpClient, use Client.getHttpClient instead