mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
do not ignore exceptions during migration execution
This commit is contained in:
parent
5a0f1fe848
commit
7ecb16a46e
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ namespace Jellyfin.Server.Migrations
|
|||
catch (Exception ex)
|
||||
{
|
||||
logger.LogError(ex, "Cannot apply migration {Name}", updater.Name);
|
||||
continue;
|
||||
throw;
|
||||
}
|
||||
|
||||
logger.LogInformation("Migration {Name} applied successfully", updater.Name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue