We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47ca483 commit b4842a8Copy full SHA for b4842a8
src/backend/storage/ipc/signalfuncs.c
@@ -180,8 +180,10 @@ pg_wait_until_termination(int pid, int64 timeout)
180
} while (remainingtime > 0);
181
182
ereport(WARNING,
183
- (errmsg("backend with PID %d did not terminate within %lld milliseconds",
184
- 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",
185
+ timeout,
186
+ pid, (long long int) timeout)));
187
188
return false;
189
}
0 commit comments