File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -116,16 +116,14 @@ InternalIpcSemaphoreCreate(IpcSemaphoreKey semKey, int numSems)
116
116
(unsigned long ) semKey , numSems ,
117
117
IPC_CREAT | IPC_EXCL | IPCProtection ),
118
118
(errno == ENOSPC ) ?
119
- errhint ("This error does *not* mean that you have run out of disk space.\n "
119
+ errhint ("This error does *not* mean that you have run out of disk space. "
120
120
"It occurs when either the system limit for the maximum number of "
121
121
"semaphore sets (SEMMNI), or the system wide maximum number of "
122
122
"semaphores (SEMMNS), would be exceeded. You need to raise the "
123
123
"respective kernel parameter. Alternatively, reduce PostgreSQL's "
124
- "consumption of semaphores by reducing its max_connections parameter "
125
- "(currently %d).\n"
124
+ "consumption of semaphores by reducing its max_connections parameter.\n"
126
125
"The PostgreSQL documentation contains more information about "
127
- "configuring your system for PostgreSQL." ,
128
- MaxBackends ) : 0 ));
126
+ "configuring your system for PostgreSQL." ) : 0 ));
129
127
}
130
128
131
129
return semId ;
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ InternalIpcMemoryCreate(IpcMemoryKey memKey, Size size)
173
173
"memory configuration." ,
174
174
(unsigned long ) size ) : 0 ,
175
175
(errno == ENOSPC ) ?
176
- errhint ("This error does *not* mean that you have run out of disk space. "
176
+ errhint ("This error does *not* mean that you have run out of disk space. "
177
177
"It occurs either if all available shared memory IDs have been taken, "
178
178
"in which case you need to raise the SHMMNI parameter in your kernel, "
179
179
"or because the system's overall limit for shared memory has been "
You can’t perform that action at this time.
0 commit comments