]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: mux-quic: adjust traces on stream init
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Tue, 16 Aug 2022 09:13:45 +0000 (11:13 +0200)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Wed, 17 Aug 2022 09:05:46 +0000 (11:05 +0200)
Adjust traces on qcc_init_stream_remote() : replace "opening" by
"initializing" to avoid confusion with traces dealing with OPEN stream
state.

src/mux_quic.c

index 7b71ddb2c1a274d6d273749231133859464aeaa5..2b53c0d8f51d358cbf63e887073361285f6b14a2 100644 (file)
@@ -615,8 +615,8 @@ static struct qcs *qcc_init_stream_remote(struct qcc *qcc, uint64_t id)
        BUG_ON(id < *largest);
 
        while (id >= *largest) {
-               const char *str = *largest < id ? "opening intermediary stream" :
-                                                 "opening remote stream";
+               const char *str = *largest < id ? "initializing intermediary remote stream" :
+                                                 "initializing remote stream";
 
                qcs = qcs_new(qcc, *largest, type);
                if (!qcs) {