From 9e9e6662049af375841ae40c158a474c0d0a716d Mon Sep 17 00:00:00 2001 From: Robin Dadswell <19610103+RobinDadswell@users.noreply.github.com> Date: Sat, 8 Jan 2022 23:16:48 +0000 Subject: [PATCH] Fixed: Postgres default port --- src/NzbDrone.Core/Configuration/ConfigFileProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs index 7f1490eec..9570aa2fc 100644 --- a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs +++ b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs @@ -197,7 +197,7 @@ public AuthenticationType AuthenticationMethod public string PostgresPassword => GetValue("PostgresPassword", string.Empty, persist: false); public string PostgresMainDb => GetValue("PostgresMainDb", "prowlarr-main", persist: false); public string PostgresLogDb => GetValue("PostgresLogDb", "prowlarr-log", persist: false); - public int PostgresPort => GetValueInt("PostgresPort", 5436, persist: false); + public int PostgresPort => GetValueInt("PostgresPort", 5432, persist: false); public bool LogSql => GetValueBoolean("LogSql", false, persist: false); public int LogRotate => GetValueInt("LogRotate", 50, persist: false); public bool FilterSentryEvents => GetValueBoolean("FilterSentryEvents", true, persist: false);