]> git.kaiwu.me - nginx.git/commitdiff
HTTP/3: downgraded literal size error level to NGX_LOG_INFO.
authorRoman Arutyunyan <arut@nginx.com>
Thu, 2 Jul 2020 13:33:36 +0000 (16:33 +0300)
committerRoman Arutyunyan <arut@nginx.com>
Thu, 2 Jul 2020 13:33:36 +0000 (16:33 +0300)
Now it's similar to HTTP/2.

src/http/v3/ngx_http_v3_parse.c

index bd91c5b023f37cff5ad1065bad3898de88189ff8..b50b216184ddafcb34726f992610483b70f76400 100644 (file)
@@ -446,7 +446,7 @@ ngx_http_v3_parse_literal(ngx_connection_t *c, ngx_http_v3_parse_literal_t *st,
         v3cf = ngx_http_v3_get_module_srv_conf(c, ngx_http_v3_module);
 
         if (n > v3cf->max_field_size) {
-            ngx_log_error(NGX_LOG_ERR, c->log, 0,
+            ngx_log_error(NGX_LOG_INFO, c->log, 0,
                           "client exceeded http3_max_field_size limit");
             return NGX_ERROR;
         }