forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit0c10240
committed
Initialize ListenSocket array earlier.
After commitb0bea38, syslogger prints 63 warnings about failing toclose a listen socket at postmaster startup. That's because thesyslogger process forks before the ListenSockets array is initialized,so ClosePostmasterPorts() calls "close(0)" 64 times. The first callsucceeds, because fd 0 is stdin.This has been like this since commit9a86f03 in version 13, whichmoved the SysLogger_Start() call to before initializing ListenSockets.We just didn't notice until commitb0bea38 added the LOG message.Reported by Michael Paquier and Jeff Janes.Author: Michael PaquierDiscussion:https://www.postgresql.org/message-id/ZOvvuQe0rdj2slA9%40paquier.xyzDiscussion:https://www.postgresql.org/message-id/ZO0fgDwVw2SUJiZx@paquier.xyz#482670177eb4eaf4c9f03c1eed963e5fBackpatch-through: 131 parent8700851 commit0c10240
1 file changed
+11
-8
lines changedLines changed: 11 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1157 | 1157 |
| |
1158 | 1158 |
| |
1159 | 1159 |
| |
| 1160 | + | |
| 1161 | + | |
| 1162 | + | |
| 1163 | + | |
| 1164 | + | |
| 1165 | + | |
| 1166 | + | |
| 1167 | + | |
| 1168 | + | |
| 1169 | + | |
| 1170 | + | |
1160 | 1171 |
| |
1161 | 1172 |
| |
1162 | 1173 |
| |
| |||
1191 | 1202 |
| |
1192 | 1203 |
| |
1193 | 1204 |
| |
1194 |
| - | |
1195 |
| - | |
1196 |
| - | |
1197 | 1205 |
| |
1198 |
| - | |
1199 |
| - | |
1200 |
| - | |
1201 |
| - | |
1202 |
| - | |
1203 | 1206 |
| |
1204 | 1207 |
| |
1205 | 1208 |
| |
|
0 commit comments
Comments
(0)