Skip to content

Commit 2edc31c

Browse files
Message mentions msec when it should be seconds, so use s instead of ms.
Noticed by Andres Freund
1 parent a8ce974 commit 2edc31c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/storage/ipc/standby.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Portions Copyright (c) 1994, Regents of the University of California
1212
*
1313
* IDENTIFICATION
14-
* $PostgreSQL: pgsql/src/backend/storage/ipc/standby.c,v 1.5 2010/01/16 10:05:50 sriggs Exp $
14+
* $PostgreSQL: pgsql/src/backend/storage/ipc/standby.c,v 1.6 2010/01/16 10:13:04 sriggs Exp $
1515
*
1616
*-------------------------------------------------------------------------
1717
*/
@@ -191,7 +191,7 @@ ResolveRecoveryConflictWithVirtualXIDs(VirtualTransactionId *waitlist,
191191

192192
oldactivitymsg = get_ps_display(&len);
193193
snprintf(waitactivitymsg, sizeof(waitactivitymsg),
194-
"waiting for max_standby_delay (%u ms)",
194+
"waiting for max_standby_delay (%u s)",
195195
MaxStandbyDelay);
196196
set_ps_display(waitactivitymsg, false);
197197
if (len > 100)

0 commit comments

Comments
 (0)