mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-06 23:32:34 -04:00
MINOR: mux-h2/trace: missing conn pointer in demux full message
One trace was missing the connection's pointer, reporting "demux buffer full" without indicating for what connection it was.
This commit is contained in:
parent
cb8f03fc46
commit
35fb846333
1 changed files with 1 additions and 1 deletions
|
|
@ -3310,7 +3310,7 @@ static int h2_recv(struct h2c *h2c)
|
|||
|
||||
if (b_data(buf) == buf->size) {
|
||||
h2c->flags |= H2_CF_DEM_DFULL;
|
||||
TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK);
|
||||
TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
|
||||
}
|
||||
|
||||
TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
|
||||
|
|
|
|||
Loading…
Reference in a new issue