We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The ReadNamespacedPodLog returns disposed stream in 6.x release. In https://github.com/kubernetes-client/csharp/blob/master/src/KubernetesClient/generated/KubernetesExtensions.cs, the code is
using (var _result = await operations.ReadNamespacedPodLogWithHttpMessagesAsync().ConfigureAwait(false)) { return _result.Body; }
I guess the using is root cause. In 5.x the code is
var _result = await operations.ReadNamespacedPodLogWithHttpMessagesAsync().ConfigureAwait(false); _result.Request.Dispose(); return _result.Body;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The ReadNamespacedPodLog returns disposed stream in 6.x release. In https://github.com/kubernetes-client/csharp/blob/master/src/KubernetesClient/generated/KubernetesExtensions.cs, the code is
I guess the using is root cause. In 5.x the code is
The text was updated successfully, but these errors were encountered: