socket: Too many incoming connections

Hello list,

some socket activated service gave me the error message you can see on
the subject, maybe systemd should be more verbose in that case.

Thanks,
Dimitris
This commit is contained in:
Dimitrios Apostolou 2012-12-19 22:32:52 +01:00 committed by Lennart Poettering
parent 499519c649
commit 80cba3795d
1 changed files with 1 additions and 1 deletions

View File

@ -1484,7 +1484,7 @@ static void socket_enter_running(Socket *s, int cfd) {
Service *service;
if (s->n_connections >= s->max_connections) {
log_warning("Too many incoming connections (%u)", s->n_connections);
log_warning("%s: Too many incoming connections (%u)", UNIT(s)->id, s->n_connections);
close_nointr_nofail(cfd);
return;
}