mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 17:24:46 +03:00
update upgrade process
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user