diff options
Diffstat (limited to 'src/backend/replication/walsender.c')
-rw-r--r-- | src/backend/replication/walsender.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/replication/walsender.c b/src/backend/replication/walsender.c index c623b07cf02..59d1dfc7e28 100644 --- a/src/backend/replication/walsender.c +++ b/src/backend/replication/walsender.c @@ -1727,7 +1727,7 @@ WalSndUpdateProgress(LogicalDecodingContext *ctx, XLogRecPtr lsn, TransactionId /* * Wake up the logical walsender processes with logical failover slots if the - * currently acquired physical slot is specified in standby_slot_names GUC. + * currently acquired physical slot is specified in synchronized_standby_slots GUC. */ void PhysicalWakeupLogicalWalSnd(void) @@ -1742,7 +1742,7 @@ PhysicalWakeupLogicalWalSnd(void) if (RecoveryInProgress()) return; - if (SlotExistsInStandbySlotNames(NameStr(MyReplicationSlot->data.name))) + if (SlotExistsInSyncStandbySlots(NameStr(MyReplicationSlot->data.name))) ConditionVariableBroadcast(&WalSndCtl->wal_confirm_rcv_cv); } |