Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re[2]: Поломался limit_req
> Патч. Сегодня ещё будет 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;
Обновился, спасибо. Так работает.
|