@@ -204,8 +204,8 @@ SyncRepWaitForLSN(XLogRecPtr XactCommitLSN)
204204{
205205ereport (WARNING ,
206206(errcode (ERRCODE_ADMIN_SHUTDOWN ),
207- errmsg ("canceling the wait for replication and terminating connection due to administrator command" ),
208- errdetail ("The transaction has alreadybeen committed locally butmight have not been replicated to the standby." )));
207+ errmsg ("canceling the wait forsynchronous replication and terminating connection due to administrator command" ),
208+ errdetail ("The transaction has already committed locally, butmay not have been replicated to the standby." )));
209209whereToSendOutput = DestNone ;
210210SyncRepCancelWait ();
211211break ;
@@ -222,7 +222,7 @@ SyncRepWaitForLSN(XLogRecPtr XactCommitLSN)
222222QueryCancelPending = false;
223223ereport (WARNING ,
224224(errmsg ("canceling wait for synchronous replication due to user request" ),
225- errdetail ("The transaction has committed locally, but may not have replicated to the standby." )));
225+ errdetail ("The transaction hasalready committed locally, but may not have been replicated to the standby." )));
226226SyncRepCancelWait ();
227227break ;
228228}