[systemd-commits] src/core

Lennart Poettering lennart at kemper.freedesktop.org
Wed Dec 19 13:33:31 PST 2012


 src/core/socket.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 80cba3795da3a43b27cbb219d7daf7d6f049b079
Author: Dimitrios Apostolou <jimis at gmx.net>
Date:   Wed Dec 19 22:32:52 2012 +0100

    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

diff --git a/src/core/socket.c b/src/core/socket.c
index 9b5bcb6..49e795e 100644
--- a/src/core/socket.c
+++ b/src/core/socket.c
@@ -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;
                 }



More information about the systemd-commits mailing list