1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-12 11:15:43 +02:00

New: Log warning if less than 1 GB free space during update

Closes #6385
This commit is contained in:
Mark McDowall 2024-01-20 13:15:29 -08:00 committed by Mark McDowall
parent c0b30a5028
commit e66ba84fc0

View File

@ -107,6 +107,11 @@ private bool InstallUpdate(UpdatePackage updatePackage)
var updateSandboxFolder = _appFolderInfo.GetUpdateSandboxFolder();
if (_diskProvider.GetTotalSize(updateSandboxFolder) < 1.Gigabytes())
{
_logger.Warn("Temporary location '{0}' has less than 1 GB free space, Sonarr may not be able to update itself.", updateSandboxFolder);
}
var packageDestination = Path.Combine(updateSandboxFolder, updatePackage.FileName);
if (_diskProvider.FolderExists(updateSandboxFolder))