From: Bill Stoddard Date: Mon, 22 Oct 2001 16:08:37 +0000 (+0000) Subject: Win32: Running out of threads should be a warning, not an error. X-Git-Tag: 2.0.27~46 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=18a9373601d8f82acac06f74edf5f7135a965516;p=apache Win32: Running out of threads should be a warning, not an error. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91634 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index 850363e93d..6c660f8d4f 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -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;