Force HTTP/1.1 for now

This commit is contained in:
Ske 2021-12-23 21:23:43 -05:00 committed by spiral
parent 2aa258acf4
commit 92e638613f
No known key found for this signature in database
GPG Key ID: A6059F0CA0E1BD31

View File

@ -20,7 +20,7 @@ namespace Myriad.Rest;
public class BaseRestClient: IAsyncDisposable public class BaseRestClient: IAsyncDisposable
{ {
private readonly string _baseUrl; private readonly string _baseUrl;
private readonly Version _httpVersion = new(2, 0); private readonly Version _httpVersion = new(1, 1);
private readonly JsonSerializerOptions _jsonSerializerOptions; private readonly JsonSerializerOptions _jsonSerializerOptions;
private readonly ILogger _logger; private readonly ILogger _logger;
private readonly Ratelimiter _ratelimiter; private readonly Ratelimiter _ratelimiter;
@ -177,7 +177,7 @@ public class BaseRestClient: IAsyncDisposable
request.Method, CleanForLogging(request.RequestUri!)); request.Method, CleanForLogging(request.RequestUri!));
request.Version = _httpVersion; request.Version = _httpVersion;
request.VersionPolicy = HttpVersionPolicy.RequestVersionOrHigher; request.VersionPolicy = HttpVersionPolicy.RequestVersionExact;
HttpResponseMessage response; HttpResponseMessage response;