aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2019-11-08 18:12:51 +0100
committerPeter Eisentraut <peter@eisentraut.org>2019-11-08 18:37:35 +0100
commitc125bc8995dfdf905ba146550a14867a17982425 (patch)
treeb4666aeb8e07e7825777a652c6d6dba2e3713cc4
parent042e82cef949b3d0acf04431c25e7ee0e1535456 (diff)
downloadpostgresql-c125bc8995dfdf905ba146550a14867a17982425.tar.gz
postgresql-c125bc8995dfdf905ba146550a14867a17982425.zip
Fix gratuitous error message variation
-rw-r--r--src/backend/replication/logical/origin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/origin.c b/src/backend/replication/logical/origin.c
index c9d04ae0b9f..53e74742010 100644
--- a/src/backend/replication/logical/origin.c
+++ b/src/backend/replication/logical/origin.c
@@ -1091,7 +1091,7 @@ replorigin_session_setup(RepOriginId node)
{
ereport(ERROR,
(errcode(ERRCODE_OBJECT_IN_USE),
- errmsg("replication origin %d is already active for PID %d",
+ errmsg("replication origin with OID %d is already active for PID %d",
curstate->roident, curstate->acquired_by)));
}