mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-22 22:56:29 +00:00
Fix pre-9.6 wal_level check
This commit is contained in:
2
repmgr.c
2
repmgr.c
@@ -5093,7 +5093,7 @@ check_upstream_config(PGconn *conn, int server_version_num, bool exit_on_error)
|
||||
char **levels;
|
||||
int j = 0;
|
||||
|
||||
if (server_version_num < 90500)
|
||||
if (server_version_num < 90600)
|
||||
{
|
||||
levels = (char **)levels_pre96;
|
||||
wal_error_message = _("parameter 'wal_level' must be set to 'hot_standby' or 'logical'");
|
||||
|
||||
Reference in New Issue
Block a user