From 7deb7c143261620675397c69e2af2183ed789743 Mon Sep 17 00:00:00 2001 From: Wendell Jones Date: Tue, 10 Mar 2026 13:01:12 -0400 Subject: [PATCH] Fix SA1513 StyleCop error - add blank line after closing brace --- .../upgrades/scenarios/new-dotnet-version_02bc64/scenario.json | 2 +- .../PostgresDatabaseProvider.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/upgrades/scenarios/new-dotnet-version_02bc64/scenario.json b/.github/upgrades/scenarios/new-dotnet-version_02bc64/scenario.json index 67551120..4c5cad27 100644 --- a/.github/upgrades/scenarios/new-dotnet-version_02bc64/scenario.json +++ b/.github/upgrades/scenarios/new-dotnet-version_02bc64/scenario.json @@ -3,7 +3,7 @@ "operationId": "02bc6448-a69d-4ff4-a0ec-0db07ec3a09a", "description": "Upgrade solution or project to new version of .NET", "startTime": "2026-03-05T22:18:32.3921759Z", - "lastUpdateTime": "2026-03-10T16:51:30.5053632Z", + "lastUpdateTime": "2026-03-10T17:00:26.858894Z", "stage": "Execution", "properties": {}, "folderPath": "" diff --git a/src/Jellyfin.Database/Jellyfin.Database.Providers.Postgres/PostgresDatabaseProvider.cs b/src/Jellyfin.Database/Jellyfin.Database.Providers.Postgres/PostgresDatabaseProvider.cs index b53cf300..8b3427ec 100644 --- a/src/Jellyfin.Database/Jellyfin.Database.Providers.Postgres/PostgresDatabaseProvider.cs +++ b/src/Jellyfin.Database/Jellyfin.Database.Providers.Postgres/PostgresDatabaseProvider.cs @@ -560,6 +560,7 @@ public sealed class PostgresDatabaseProvider : IJellyfinDatabaseProvider { logger.LogError("psql error: {Error}", error); } + throw new InvalidOperationException($"psql failed with exit code {psqlProcess.ExitCode}. Error: {error}"); } }