changeset 9029:28fc35b71d75 quic

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.
author Sergey Kandaurov <pluknet@nginx.com>
date Fri, 30 Sep 2022 17:24:47 +0400
parents 98e94553ae51
children 172705615d04
files src/event/quic/ngx_event_quic_migration.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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, n
     /* 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;