# HG changeset patch # User Maxim Dounin # Date 1513705746 -10800 # Node ID 4931a7ba6a32eb37de765f4eea10e8951fcefaf3 # Parent bdfbdf74fb3d7462fe1ed2eee76fa41cd017e435 Restored proper tense in limit_conn description. The limit_conn module only limits connections with active requests, that is, if a connection has a request "being processed" by the server. During a text review in 95c3c3bbf1ce it was changed to "has a request processed", which is incorrect (it is true after processing the first request). Reported by Abilio Marques, http://mailman.nginx.org/pipermail/nginx/2017-December/055322.html. diff -r bdfbdf74fb3d -r 4931a7ba6a32 xml/en/docs/http/ngx_http_limit_conn_module.xml --- a/xml/en/docs/http/ngx_http_limit_conn_module.xml Fri Dec 15 21:45:00 2017 +0300 +++ b/xml/en/docs/http/ngx_http_limit_conn_module.xml Tue Dec 19 20:49:06 2017 +0300 @@ -22,7 +22,7 @@ Not all connections are counted. -A connection is counted only if it has a request processed by the server +A connection is counted only if it has a request being processed by the server and the whole request header has already been read.