Re[2]: Поломался limit_req

Aleksander jjjx128 at mail.ru
Tue Oct 6 20:19:10 MSD 2009


> Патч. Сегодня ещё будет 0.8.19.

> Index: src/http/modules/ngx_http_limit_req_module.c
> ===================================================================
> --- src/http/modules/ngx_http_limit_req_module.c	(revision 2508)
> +++ src/http/modules/ngx_http_limit_req_module.c	(working copy)
> @@ -398,15 +398,15 @@
>  
>                  excess = lr->excess - ctx->rate * ngx_abs(ms) / 1000 + 1000;
>  
> +                if (excess < 0) {
> +                    excess = 0;
> +                }
> +
>                  if ((ngx_uint_t) excess > lrcf->burst) {
>                      *lrp = lr;
>                      return NGX_BUSY;
>                  }
>  
> -                if (excess < 0) {
> -                    excess = 0;
> -                }
> -
>                  lr->excess = excess;
>                  lr->last = now;

Обновился, спасибо. Так работает.





More information about the nginx-ru mailing list