]> granicus.if.org Git - apache/commitdiff
Win32: Running out of threads should be a warning, not an error.
authorBill Stoddard <stoddard@apache.org>
Mon, 22 Oct 2001 16:08:37 +0000 (16:08 +0000)
committerBill Stoddard <stoddard@apache.org>
Mon, 22 Oct 2001 16:08:37 +0000 (16:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91634 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/winnt/mpm_winnt.c

index 850363e93d72afd33417f544b6bf34135c33d4b9..6c660f8d4f6ccf0a9e908cbb90c2b58e23201f65 100644 (file)
@@ -681,7 +681,7 @@ static void winnt_accept(void *listen_socket)
             if (num_completion_contexts >= ap_threads_per_child) {
                 static int reported = 0;
                 if (!reported) {
-                    ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, ap_server_conf,
+                    ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, 0, ap_server_conf,
                                  "Server ran out of threads to serve requests. Consider "
                                  "raising the ThreadsPerChild setting");
                     reported = 1;