[nginx] svn commit:  r4757 - trunk/src/http/modules
    ru at nginx.com 
    ru at nginx.com
       
    Fri Jul 20 08:22:00 UTC 2012
    
    
  
Author: ru
Date: 2012-07-20 08:21:59 +0000 (Fri, 20 Jul 2012)
New Revision: 4757
URL: http://trac.nginx.org/nginx/changeset/4757/nginx
Log:
Fixed debugging messages to account that limit_zone was renamed to limit_conn.
Modified:
   trunk/src/http/modules/ngx_http_limit_conn_module.c
Modified: trunk/src/http/modules/ngx_http_limit_conn_module.c
===================================================================
--- trunk/src/http/modules/ngx_http_limit_conn_module.c	2012-07-17 04:47:34 UTC (rev 4756)
+++ trunk/src/http/modules/ngx_http_limit_conn_module.c	2012-07-20 08:21:59 UTC (rev 4757)
@@ -238,7 +238,7 @@
         }
 
         ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
-                       "limit zone: %08XD %d", node->key, lc->conn);
+                       "limit conn: %08XD %d", node->key, lc->conn);
 
         ngx_shmtx_unlock(&shpool->mutex);
 
@@ -358,7 +358,7 @@
     ngx_shmtx_lock(&shpool->mutex);
 
     ngx_log_debug2(NGX_LOG_DEBUG_HTTP, lccln->shm_zone->shm.log, 0,
-                   "limit zone cleanup: %08XD %d", node->key, lc->conn);
+                   "limit conn cleanup: %08XD %d", node->key, lc->conn);
 
     lc->conn--;
 
    
    
More information about the nginx-devel
mailing list