update upgrade process

This commit is contained in:
Luke Pulverenti
2016-02-03 16:56:00 -05:00
parent 6cb1f77789
commit 00ae190a27
2 changed files with 25 additions and 3 deletions

View File

@@ -64,6 +64,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
public async Task Execute(CancellationToken cancellationToken, IProgress<double> progress)
{
OnProgress(0);
var innerProgress = new ActionableProgress<double>();
innerProgress.RegisterAction(p =>
{
@@ -146,6 +148,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
if (itemId != Guid.Empty)
{
LogMessage(string.Format("Querying item {0}", itemId));
// Somehow some invalid data got into the db. It probably predates the boundary checking
var item = _libraryManager.GetItemById(itemId);
@@ -153,6 +157,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
{
try
{
LogMessage(string.Format("Saving item {0}", itemId));
await _itemRepo.SaveItem(item, cancellationToken).ConfigureAwait(false);
}
catch (OperationCanceledException)
@@ -175,6 +181,14 @@ namespace MediaBrowser.Server.Implementations.Persistence
progress.Report(100);
}
private void LogMessage(string msg)
{
if (EnableUnavailableMessage)
{
_logger.Info(msg);
}
}
private async Task CleanDeadItems(CancellationToken cancellationToken, IProgress<double> progress)
{
var itemIds = _libraryManager.GetItemIds(new InternalItemsQuery