diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2022-09-30 17:24:47 +0400 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2022-09-30 17:24:47 +0400 |
commit | fcba3d14581342b94a5e8da50d853066447afbdb (patch) | |
tree | 8776dd793b05643586868412c387e2bba7c3b2ff /src | |
parent | e9051af79df0e5535b69c952137f1600c8fa4d40 (diff) | |
download | nginx-fcba3d14581342b94a5e8da50d853066447afbdb.tar.gz nginx-fcba3d14581342b94a5e8da50d853066447afbdb.zip |
QUIC: "info" logging level on insufficient client connection ids.
Apparently, this error is reported on NAT rebinding if client didn't
previously send NEW_CONNECTION_ID to supply additional connection ids.
Diffstat (limited to 'src')
-rw-r--r-- | src/event/quic/ngx_event_quic_migration.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/quic/ngx_event_quic_migration.c b/src/event/quic/ngx_event_quic_migration.c index 36a2af73c..37c7b8675 100644 --- a/src/event/quic/ngx_event_quic_migration.c +++ b/src/event/quic/ngx_event_quic_migration.c @@ -309,7 +309,7 @@ ngx_quic_set_path(ngx_connection_t *c, ngx_quic_header_t *pkt) /* new path requires new client id */ cid = ngx_quic_next_client_id(c); if (cid == NULL) { - ngx_log_error(NGX_LOG_ERR, c->log, 0, + ngx_log_error(NGX_LOG_INFO, c->log, 0, "quic no available client ids for new path"); /* stop processing of this datagram */ return NGX_DONE; |