]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
merge this from 2.1-dev:
authorJeff Trawick <trawick@apache.org>
Fri, 5 Sep 2003 21:13:22 +0000 (21:13 +0000)
committerJeff Trawick <trawick@apache.org>
Fri, 5 Sep 2003 21:13:22 +0000 (21:13 +0000)
    Lower the severity of the "listener thread didn't exit" message
    to debug, as it is of interest only to developers.

PR:              9011
Reviewed by:  stoddard, brianp

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@101169 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
server/mpm/experimental/threadpool/threadpool.c
server/mpm/worker/worker.c

diff --git a/CHANGES b/CHANGES
index 3befece61b2ecc20255f91e673668e1080687f6d..6d6cdeea6dc2db9aedfc65e912da06196af01a77 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,9 @@
 Changes with Apache 2.0.48
 
+  *) Lower the severity of the "listener thread didn't exit" message
+     to debug, as it is of interest only to developers.  PR 9011
+     [Jeff Trawick]
+
   *) MPMs: The bucket brigades subsystem now honors the MaxMemFree setting.
      [Cliff Woolley, Jean-Jacques Clar]
 
diff --git a/STATUS b/STATUS
index c53105c839569069e7759e08041d3bf7491ed1c3..d05a19a01bbc918a167008f0859f3b96d3b17df0 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,5 +1,5 @@
 APACHE 2.0 STATUS:                                              -*-text-*-
-Last modified at [$Date: 2003/09/05 20:40:30 $]
+Last modified at [$Date: 2003/09/05 21:13:21 $]
 
 Release:
 
@@ -376,12 +376,6 @@ PATCHES TO PORT FROM 2.1
         server/mpm/worker/worker.c r1.138
       +1: trawick, stoddard, brianp
 
-    * Lower the severity of the "listener thread didn't exit" message
-      to debug, as it is of interest only to developers.
-        server/mpm/experimental/threadpool/threadpool.c r1.20
-        server/mpm/worker/worker.c
-      +1: trawick, stoddard, brianp
-
 CURRENT RELEASE NOTES:
 
     * Backwards compatibility is expected of future Apache 2.0 releases,
index 64f4647e915bd9d2d129599abe561d8b7ffecbf7..3fbdd19f6c87d88806ba28458770a9b79c0ddf69 100644 (file)
@@ -1270,7 +1270,7 @@ static void join_workers(apr_thread_t *listener, apr_thread_t **threads)
             ++iter;
         }
         if (iter >= 10) {
-            ap_log_error(APLOG_MARK, APLOG_CRIT, 0, ap_server_conf,
+            ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf,
                          "the listener thread didn't exit");
         }
         else {
index ec7b8e2d2f5ec86b3b44b5fbf40f9d52ee425589..efc1d8acfaf9ad49307e42b1646d4a4c5e19b1ee 100644 (file)
@@ -1141,7 +1141,7 @@ static void join_workers(apr_thread_t *listener, apr_thread_t **threads)
             ++iter;
         }
         if (iter >= 10) {
-            ap_log_error(APLOG_MARK, APLOG_CRIT, 0, ap_server_conf,
+            ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf,
                          "the listener thread didn't exit");
         }
         else {