mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-03-25 04:17: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:
parent
bf3c208760
commit
fd79ddb2d6
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user