mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-19 14:31:44 -04: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
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue