Commit b4842a8d authored by Peter Eisentraut's avatar Peter Eisentraut

Fix lack of message pluralization

parent 47ca4836
...@@ -180,8 +180,10 @@ pg_wait_until_termination(int pid, int64 timeout) ...@@ -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;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment