浏览代码

update http compression

Luke Pulverenti 9 年之前
父节点
当前提交
18cd0dd98c

+ 4 - 1
MediaBrowser.Server.Implementations/Connect/ConnectEntryPoint.cs

@@ -66,7 +66,10 @@ namespace MediaBrowser.Server.Implementations.Connect
                     {
                         Url = ipLookupUrl,
                         UserAgent = "Emby/" + _appHost.ApplicationVersion,
-                        LogErrors = logErrors
+                        LogErrors = logErrors,
+
+                        // Seeing block length errors with our server
+                        EnableHttpCompression = false
 
                     }).ConfigureAwait(false))
                     {

+ 32 - 4
MediaBrowser.Server.Implementations/EntryPoints/UsageReporter.cs

@@ -28,7 +28,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
             _logger = logger;
         }
 
-        public Task ReportServerUsage(CancellationToken cancellationToken)
+        public async Task ReportServerUsage(CancellationToken cancellationToken)
         {
             cancellationToken.ThrowIfCancellationRequested();
 
@@ -51,10 +51,24 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
 
             data["plugins"] = string.Join(",", _applicationHost.Plugins.Select(i => i.Id).ToArray());
 
-            return _httpClient.Post(MbAdminUrl + "service/registration/ping", data, cancellationToken);
+            var options = new HttpRequestOptions
+            {
+                Url = MbAdminUrl + "service/registration/ping",
+                CancellationToken = cancellationToken,
+
+                // Seeing block length errors
+                EnableHttpCompression = false
+            };
+
+            options.SetPostData(data);
+
+            using (var response = await _httpClient.SendAsync(options, "POST").ConfigureAwait(false))
+            {
+                
+            }
         }
 
-        public Task ReportAppUsage(ClientInfo app, CancellationToken cancellationToken)
+        public async Task ReportAppUsage(ClientInfo app, CancellationToken cancellationToken)
         {
             if (string.IsNullOrWhiteSpace(app.DeviceId))
             {
@@ -79,7 +93,21 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
                 { "platform", app.DeviceName }, 
             };
 
-            return _httpClient.Post(MbAdminUrl + "service/registration/ping", data, cancellationToken);
+            var options = new HttpRequestOptions
+            {
+                Url = MbAdminUrl + "service/registration/ping",
+                CancellationToken = cancellationToken,
+
+                // Seeing block length errors
+                EnableHttpCompression = false
+            };
+
+            options.SetPostData(data);
+
+            using (var response = await _httpClient.SendAsync(options, "POST").ConfigureAwait(false))
+            {
+
+            }
         }
     }