1
0
mirror of http://git.haproxy.org/git/haproxy.git/ synced 2025-04-04 23:29:42 +00:00

MINOR: mux-quic: adjust traces on stream init

Adjust traces on qcc_init_stream_remote() : replace "opening" by
"initializing" to avoid confusion with traces dealing with OPEN stream
state.
This commit is contained in:
Amaury Denoyelle 2022-08-16 11:13:45 +02:00
parent bf3c208760
commit fd79ddb2d6

View File

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