HTTP/2: style.

This commit is contained in:
Sergey Kandaurov 2018-02-15 02:34:16 +03:00
parent 4b6fe1255a
commit 049126725c
2 changed files with 4 additions and 4 deletions

View File

@ -3862,8 +3862,8 @@ ngx_http_v2_process_request_body(ngx_http_request_t *r, u_char *pos,
} else {
if (size > (size_t) (buf->end - buf->last)) {
ngx_log_error(NGX_LOG_INFO, fc->log, 0,
"client intended to send body data "
"larger than declared");
"client intended to send body data "
"larger than declared");
return NGX_HTTP_BAD_REQUEST;
}

View File

@ -929,8 +929,8 @@ ngx_http_v2_push_resource(ngx_http_request_t *r, ngx_str_t *path,
}
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, h2c->connection->log, 0,
"http2 pushing:%ui limit:%ui",
h2c->pushing, h2c->concurrent_pushes);
"http2 pushing:%ui limit:%ui",
h2c->pushing, h2c->concurrent_pushes);
if (h2c->pushing >= h2c->concurrent_pushes) {
return NGX_ABORT;