mirror of
https://github.com/postgres/postgres.git
synced 2025-05-05 09:19:17 +03:00
Fix lack of message pluralization
This commit is contained in:
parent
47ca483644
commit
b4842a8d08
@ -180,7 +180,9 @@ pg_wait_until_termination(int pid, int64 timeout)
|
|||||||
} while (remainingtime > 0);
|
} while (remainingtime > 0);
|
||||||
|
|
||||||
ereport(WARNING,
|
ereport(WARNING,
|
||||||
(errmsg("backend with PID %d did not terminate within %lld milliseconds",
|
(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)));
|
pid, (long long int) timeout)));
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user