do not ignore exceptions during migration execution

This commit is contained in:
Mark Monteiro 2020-03-07 18:23:32 +01:00 committed by GitHub
parent 5a0f1fe848
commit 7ecb16a46e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ namespace Jellyfin.Server.Migrations
catch (Exception ex) catch (Exception ex)
{ {
logger.LogError(ex, "Cannot apply migration {Name}", updater.Name); logger.LogError(ex, "Cannot apply migration {Name}", updater.Name);
continue; throw;
} }
logger.LogInformation("Migration {Name} applied successfully", updater.Name); logger.LogInformation("Migration {Name} applied successfully", updater.Name);