From aad9bf336c5e3669667378bc6eea1f9ec5a0d805 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Wed, 21 Aug 2019 11:12:44 -0400 Subject: [PATCH] Fix typo In early development patches, "replication origins" were called "identifiers"; almost everything was renamed, but these references to the old terminology went unnoticed. Reported-by: Craig Ringer --- src/backend/replication/logical/origin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/replication/logical/origin.c b/src/backend/replication/logical/origin.c index 94832a105bf..1f2c71b6e98 100644 --- a/src/backend/replication/logical/origin.c +++ b/src/backend/replication/logical/origin.c @@ -1055,7 +1055,7 @@ replorigin_session_setup(RepOriginId node) { ereport(ERROR, (errcode(ERRCODE_OBJECT_IN_USE), - errmsg("replication identifier %d is already active for PID %d", + errmsg("replication origin %d is already active for PID %d", curstate->roident, curstate->acquired_by))); } -- 2.39.5