mirror of
https://github.com/nginx/nginx.git
synced 2026-06-26 20:01:45 +00:00
SSL: logging level of "peer closed connection in SSL handshake".
Previously, the NGX_LOG_INFO level was used unconditionally. This is correct for client SSL connections, but too low for connections to upstream servers. To resolve this, ngx_connection_error() now used to log this error, it will select logging level appropriately. With this change, if an upstream connection is closed during SSL handshake, it is now properly logged at "error" level.
This commit is contained in:
parent
4a75e1a63c
commit
d9152910d3
1 changed files with 2 additions and 2 deletions
|
|
@ -1112,8 +1112,8 @@ ngx_ssl_handshake(ngx_connection_t *c)
|
|||
c->read->eof = 1;
|
||||
|
||||
if (sslerr == SSL_ERROR_ZERO_RETURN || ERR_peek_error() == 0) {
|
||||
ngx_log_error(NGX_LOG_INFO, c->log, err,
|
||||
"peer closed connection in SSL handshake");
|
||||
ngx_connection_error(c, err,
|
||||
"peer closed connection in SSL handshake");
|
||||
|
||||
return NGX_ERROR;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue