mirror of
https://github.com/postgres/postgres.git
synced 2025-06-05 00:02:04 -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);
|
} 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",
|
||||||
pid, (long long int) timeout)));
|
"backend with PID %d did not terminate within %lld milliseconds",
|
||||||
|
timeout,
|
||||||
|
pid, (long long int) timeout)));
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user