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

Fixed: Moved main database cleanup to daily housekeeping to prevent windows service startup failure.

This commit is contained in:
Taloth Saldono 2014-04-12 17:00:08 +02:00
parent ceb06378ad
commit 000c172553
2 changed files with 8 additions and 7 deletions

View File

@ -78,12 +78,6 @@ public IDatabase Create(MigrationType migrationType = MigrationType.Main)
return dataMapper;
});
if (migrationType == MigrationType.Main)
{
db.Vacuum();
}
return db;
}
}

View File

@ -4,6 +4,7 @@
using NzbDrone.Core.Lifecycle;
using NzbDrone.Core.Messaging.Commands;
using NzbDrone.Core.Messaging.Events;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Housekeeping
{
@ -11,11 +12,13 @@ public class HousekeepingService : IExecute<HousekeepingCommand>, IHandleAsync<A
{
private readonly IEnumerable<IHousekeepingTask> _housekeepers;
private readonly Logger _logger;
private readonly IDatabase _mainDb;
public HousekeepingService(IEnumerable<IHousekeepingTask> housekeepers, Logger logger)
public HousekeepingService(IEnumerable<IHousekeepingTask> housekeepers, Logger logger, IDatabase mainDb)
{
_housekeepers = housekeepers;
_logger = logger;
_mainDb = mainDb;
}
private void Clean()
@ -33,6 +36,10 @@ private void Clean()
_logger.ErrorException("Error running housekeeping task: " + housekeeper.GetType().FullName, ex);
}
}
// Vacuuming the log db isn't needed since that's done hourly at the TrimLogCommand.
_logger.Debug("Compressing main database after housekeeping");
_mainDb.Vacuum();
}
public void Execute(HousekeepingCommand message)