From 4dcd4da98c786c48b0dbf129c8f7ea592c34a185 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 4 Apr 2016 21:17:54 -0400 Subject: [PATCH] Fix error message from wal_level value renaming found by Ian Barwick --- src/backend/replication/slot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/replication/slot.c b/src/backend/replication/slot.c index c13be753ea9..644c52ea417 100644 --- a/src/backend/replication/slot.c +++ b/src/backend/replication/slot.c @@ -763,7 +763,7 @@ CheckSlotRequirements(void) if (wal_level < WAL_LEVEL_REPLICA) ereport(ERROR, (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), - errmsg("replication slots can only be used if wal_level >= archive"))); + errmsg("replication slots can only be used if wal_level >= replica"))); } /* -- 2.39.5