diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2010-01-16 10:13:04 +0000 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2010-01-16 10:13:04 +0000 |
commit | 2edc31c439da20a6a43a27ca1e09aed0f26d324c (patch) | |
tree | ef50b0621d7a933d883754a85cda3b596f38c04f /src | |
parent | a8ce974cddef3957b0615d743a1d090d12e81d50 (diff) | |
download | postgresql-2edc31c439da20a6a43a27ca1e09aed0f26d324c.tar.gz postgresql-2edc31c439da20a6a43a27ca1e09aed0f26d324c.zip |
Message mentions msec when it should be seconds, so use s instead of ms.
Noticed by Andres Freund
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/storage/ipc/standby.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/ipc/standby.c b/src/backend/storage/ipc/standby.c index 5eca3c89dba..dcead94b27c 100644 --- a/src/backend/storage/ipc/standby.c +++ b/src/backend/storage/ipc/standby.c @@ -11,7 +11,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/storage/ipc/standby.c,v 1.5 2010/01/16 10:05:50 sriggs Exp $ + * $PostgreSQL: pgsql/src/backend/storage/ipc/standby.c,v 1.6 2010/01/16 10:13:04 sriggs Exp $ * *------------------------------------------------------------------------- */ @@ -191,7 +191,7 @@ ResolveRecoveryConflictWithVirtualXIDs(VirtualTransactionId *waitlist, oldactivitymsg = get_ps_display(&len); snprintf(waitactivitymsg, sizeof(waitactivitymsg), - "waiting for max_standby_delay (%u ms)", + "waiting for max_standby_delay (%u s)", MaxStandbyDelay); set_ps_display(waitactivitymsg, false); if (len > 100) |