mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 06:37:06 -04:00
Fix lack of message pluralization
This commit is contained in:
parent
a8fd13cab0
commit
55b2a23407
1 changed files with 4 additions and 2 deletions
|
|
@ -180,8 +180,10 @@ pg_wait_until_termination(int pid, int64 timeout)
|
|||
} while (remainingtime > 0);
|
||||
|
||||
ereport(WARNING,
|
||||
(errmsg("backend with PID %d did not terminate within %lld milliseconds",
|
||||
pid, (long long int) timeout)));
|
||||
(errmsg_plural("backend with PID %d did not terminate within %lld millisecond",
|
||||
"backend with PID %d did not terminate within %lld milliseconds",
|
||||
timeout,
|
||||
pid, (long long int) timeout)));
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue