comparison src/http/modules/ngx_http_fastcgi_module.c @ 7933:2f443cac3f1e

Upstream: fixed logging level of upstream invalid header errors. In b87b7092cedb (nginx 1.21.1), logging level of "upstream sent invalid header" errors was accidentally changed to "info". This change restores the "error" level, which is a proper logging level for upstream-side errors.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 18 Oct 2021 16:46:59 +0300
parents b87b7092cedb
children f8f6b9fee66a
comparison
equal deleted inserted replaced
7932:01829d162095 7933:2f443cac3f1e
2019 break; 2019 break;
2020 } 2020 }
2021 2021
2022 /* rc == NGX_HTTP_PARSE_INVALID_HEADER */ 2022 /* rc == NGX_HTTP_PARSE_INVALID_HEADER */
2023 2023
2024 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0, 2024 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
2025 "upstream sent invalid header: \"%*s\\x%02xd...\"", 2025 "upstream sent invalid header: \"%*s\\x%02xd...\"",
2026 r->header_end - r->header_name_start, 2026 r->header_end - r->header_name_start,
2027 r->header_name_start, *r->header_end); 2027 r->header_name_start, *r->header_end);
2028 2028
2029 return NGX_HTTP_UPSTREAM_INVALID_HEADER; 2029 return NGX_HTTP_UPSTREAM_INVALID_HEADER;