comparison src/http/modules/ngx_http_scgi_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 75af96daee97
comparison
equal deleted inserted replaced
7932:01829d162095 7933:2f443cac3f1e
1140 return NGX_AGAIN; 1140 return NGX_AGAIN;
1141 } 1141 }
1142 1142
1143 /* rc == NGX_HTTP_PARSE_INVALID_HEADER */ 1143 /* rc == NGX_HTTP_PARSE_INVALID_HEADER */
1144 1144
1145 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0, 1145 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
1146 "upstream sent invalid header: \"%*s\\x%02xd...\"", 1146 "upstream sent invalid header: \"%*s\\x%02xd...\"",
1147 r->header_end - r->header_name_start, 1147 r->header_end - r->header_name_start,
1148 r->header_name_start, *r->header_end); 1148 r->header_name_start, *r->header_end);
1149 1149
1150 return NGX_HTTP_UPSTREAM_INVALID_HEADER; 1150 return NGX_HTTP_UPSTREAM_INVALID_HEADER;