mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
Fix incorrect format placeholders
This commit is contained in:
@ -416,7 +416,7 @@ SyncRepInitConfig(void)
|
|||||||
SpinLockRelease(&MyWalSnd->mutex);
|
SpinLockRelease(&MyWalSnd->mutex);
|
||||||
|
|
||||||
ereport(DEBUG1,
|
ereport(DEBUG1,
|
||||||
(errmsg_internal("standby \"%s\" now has synchronous standby priority %u",
|
(errmsg_internal("standby \"%s\" now has synchronous standby priority %d",
|
||||||
application_name, priority)));
|
application_name, priority)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -483,7 +483,7 @@ SyncRepReleaseWaiters(void)
|
|||||||
|
|
||||||
if (SyncRepConfig->syncrep_method == SYNC_REP_PRIORITY)
|
if (SyncRepConfig->syncrep_method == SYNC_REP_PRIORITY)
|
||||||
ereport(LOG,
|
ereport(LOG,
|
||||||
(errmsg("standby \"%s\" is now a synchronous standby with priority %u",
|
(errmsg("standby \"%s\" is now a synchronous standby with priority %d",
|
||||||
application_name, MyWalSnd->sync_standby_priority)));
|
application_name, MyWalSnd->sync_standby_priority)));
|
||||||
else
|
else
|
||||||
ereport(LOG,
|
ereport(LOG,
|
||||||
|
Reference in New Issue
Block a user