[nginx] Removed the deprecated "connections" directive.

Ruslan Ermilov ru at nginx.com
Wed Apr 29 12:28:05 UTC 2015


details:   http://hg.nginx.org/nginx/rev/b19350b896bb
branches:  
changeset: 6139:b19350b896bb
user:      Ruslan Ermilov <ru at nginx.com>
date:      Wed Apr 29 13:52:37 2015 +0300
description:
Removed the deprecated "connections" directive.

diffstat:

 src/event/ngx_event.c |  13 -------------
 1 files changed, 0 insertions(+), 13 deletions(-)

diffs (30 lines):

diff -r bc47a7a8159c -r b19350b896bb src/event/ngx_event.c
--- a/src/event/ngx_event.c	Tue Apr 28 18:55:03 2015 +0300
+++ b/src/event/ngx_event.c	Wed Apr 29 13:52:37 2015 +0300
@@ -126,13 +126,6 @@ static ngx_command_t  ngx_event_core_com
       0,
       NULL },
 
-    { ngx_string("connections"),
-      NGX_EVENT_CONF|NGX_CONF_TAKE1,
-      ngx_event_connections,
-      0,
-      0,
-      NULL },
-
     { ngx_string("use"),
       NGX_EVENT_CONF|NGX_CONF_TAKE1,
       ngx_event_use,
@@ -956,12 +949,6 @@ ngx_event_connections(ngx_conf_t *cf, ng
         return "is duplicate";
     }
 
-    if (ngx_strcmp(cmd->name.data, "connections") == 0) {
-        ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
-                           "the \"connections\" directive is deprecated, "
-                           "use the \"worker_connections\" directive instead");
-    }
-
     value = cf->args->elts;
     ecf->connections = ngx_atoi(value[1].data, value[1].len);
     if (ecf->connections == (ngx_uint_t) NGX_ERROR) {



More information about the nginx-devel mailing list