From: Peter Eisentraut Date: Tue, 5 Apr 2016 01:17:54 +0000 (-0400) Subject: Fix error message from wal_level value renaming X-Git-Tag: REL9_6_BETA1~285 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=4dcd4da98c786c48b0dbf129c8f7ea592c34a185;p=postgresql.git Fix error message from wal_level value renaming found by Ian Barwick --- 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"))); } /*