Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit55b2a23

Browse files
committed
Fix lack of message pluralization
1 parenta8fd13c commit55b2a23

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

‎src/backend/storage/ipc/signalfuncs.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,10 @@ pg_wait_until_termination(int pid, int64 timeout)
180180
}while (remainingtime>0);
181181

182182
ereport(WARNING,
183-
(errmsg("backend with PID %d did not terminate within %lld milliseconds",
184-
pid, (long longint)timeout)));
183+
(errmsg_plural("backend with PID %d did not terminate within %lld millisecond",
184+
"backend with PID %d did not terminate within %lld milliseconds",
185+
timeout,
186+
pid, (long longint)timeout)));
185187

186188
return false;
187189
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp