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:
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);
|
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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user