mirror of
https://github.com/postgres/postgres.git
synced 2025-06-01 00:01:20 -04:00
Fix lack of message pluralization
This commit is contained in:
parent
a8fd13cab0
commit
55b2a23407
@ -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…
x
Reference in New Issue
Block a user