We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4d1f85 commit 5935295Copy full SHA for 5935295
src/KubernetesClient/WatcherDelegatingHandler.cs
@@ -18,6 +18,9 @@ protected override async Task<HttpResponseMessage> SendAsync(
18
HttpRequestMessage request,
19
CancellationToken cancellationToken)
20
{
21
+#if NET5_0 || NETSTANDARD2_1
22
+ request.Version = HttpVersion.Version20;
23
+#endif
24
var originResponse = await base.SendAsync(request, cancellationToken).ConfigureAwait(false);
25
26
// all watches are GETs, so we can ignore others
0 commit comments