diff options
| author | Ruslan Ermilov <ru@nginx.com> | 2012-07-20 08:21:59 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@nginx.com> | 2012-07-20 08:21:59 +0000 |
| commit | 54ab41f27bc7e6cb09694c6e6f1fbc9a41034d1a (patch) | |
| tree | d922653f0011287be2e65a62c80a52e43924821e /src/http/modules/ngx_http_limit_conn_module.c | |
| parent | 1fd21c48bb29cdce8147f0fb53b2ad02a6130104 (diff) | |
| download | nginx-54ab41f27bc7e6cb09694c6e6f1fbc9a41034d1a.tar.gz nginx-54ab41f27bc7e6cb09694c6e6f1fbc9a41034d1a.tar.bz2 | |
Fixed debugging messages to account that limit_zone was renamed to limit_conn.
Diffstat (limited to 'src/http/modules/ngx_http_limit_conn_module.c')
| -rw-r--r-- | src/http/modules/ngx_http_limit_conn_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_limit_conn_module.c b/src/http/modules/ngx_http_limit_conn_module.c index c23c046ed..106da7a53 100644 --- a/src/http/modules/ngx_http_limit_conn_module.c +++ b/src/http/modules/ngx_http_limit_conn_module.c @@ -238,7 +238,7 @@ ngx_http_limit_conn_handler(ngx_http_request_t *r) } 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_http_limit_conn_cleanup(void *data) 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--; |
