Limit req: fixed error message wording.

This commit is contained in:
Maxim Dounin 2018-11-21 18:56:44 +03:00
parent 4f05b2b687
commit a703fca82c
1 changed files with 1 additions and 1 deletions

View File

@ -908,7 +908,7 @@ ngx_http_limit_req(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
burst = ngx_atoi(value[i].data + 6, value[i].len - 6);
if (burst <= 0) {
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
"invalid burst rate \"%V\"", &value[i]);
"invalid burst value \"%V\"", &value[i]);
return NGX_CONF_ERROR;
}