diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2026-09-05 18:49:27 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2026-09-05 18:49:27 +0200 |
| commit | 93345f812e628dae662a2c770e72fbdc46116074 (patch) | |
| tree | 2f4db2f023faa4209084872f3bd2076a8edccbd6 | |
| parent | bf5fb593e4bf87201959e8690a6f744fa3e9c214 (diff) | |
FIx naming
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 6 |
1 files changed, 4 insertions, 2 deletions
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<char> 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); /// <summary> /// 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(); |
