From 93345f812e628dae662a2c770e72fbdc46116074 Mon Sep 17 00:00:00 2001 From: Shadowghost Date: Sat, 5 Sep 2026 18:49:27 +0200 Subject: FIx naming --- Emby.Server.Implementations/Updates/InstallationManager.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Emby.Server.Implementations') diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index e17c8cfb1f..cccdb3e6aa 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/Emby.Server.Implementations/Updates/InstallationManager.cs @@ -33,7 +33,9 @@ namespace Emby.Server.Implementations.Updates public class InstallationManager : IInstallationManager { private static readonly SearchValues InvalidPackageNameChars = SearchValues.Create([.. Path.GetInvalidFileNameChars(), '/', '\\']); - private static readonly TimeSpan _packageDownloadTimeout = TimeSpan.FromMinutes(10); + // Budget for the whole package download. The response headers are already bounded by the + // HttpClient timeout; this covers reading the package body, which can be large and slow. + private static readonly TimeSpan PackageDownloadTimeout = TimeSpan.FromMinutes(10); /// /// The logger. @@ -550,7 +552,7 @@ namespace Emby.Server.Implementations.Updates // ResponseHeadersRead keeps the body out of the HttpClient timeout, which otherwise covers // the whole download; the package gets the longer budget below instead. using var downloadTokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken); - downloadTokenSource.CancelAfter(_packageDownloadTimeout); + downloadTokenSource.CancelAfter(PackageDownloadTimeout); var downloadToken = downloadTokenSource.Token; var buffer = new MemoryStream(); -- cgit v1.2.3