comparison src/http/v3/ngx_http_v3_parse.c @ 7952:a7f64438aa3c quic

HTTP/3: downgraded literal size error level to NGX_LOG_INFO. Now it's similar to HTTP/2.
author Roman Arutyunyan <arut@nginx.com>
date Thu, 02 Jul 2020 16:33:36 +0300
parents c9538aef3211
children 72f9ff4e0a88
comparison
equal deleted inserted replaced
7951:c9538aef3211 7952:a7f64438aa3c
444 n = st->length; 444 n = st->length;
445 445
446 v3cf = ngx_http_v3_get_module_srv_conf(c, ngx_http_v3_module); 446 v3cf = ngx_http_v3_get_module_srv_conf(c, ngx_http_v3_module);
447 447
448 if (n > v3cf->max_field_size) { 448 if (n > v3cf->max_field_size) {
449 ngx_log_error(NGX_LOG_ERR, c->log, 0, 449 ngx_log_error(NGX_LOG_INFO, c->log, 0,
450 "client exceeded http3_max_field_size limit"); 450 "client exceeded http3_max_field_size limit");
451 return NGX_ERROR; 451 return NGX_ERROR;
452 } 452 }
453 453
454 if (st->huffman) { 454 if (st->huffman) {