mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-10 09:07:02 +02:00
BUG/MINOR: peers: the buffer size is global.tune.bufsize, not trash.size
Currently this is harmless since trash.size is copied from global.tune.bufsize, but this may soon change when buffers become more dynamic. At least for consistency it should be backported to 1.5.
This commit is contained in:
parent
315ec4217f
commit
42fb809cf4
@ -1240,7 +1240,7 @@ static struct session *peer_session_create(struct peer *peer, struct peer_sessio
|
||||
if ((s->req->buf = pool_alloc2(pool2_buffer)) == NULL)
|
||||
goto out_fail_req_buf; /* no memory */
|
||||
|
||||
s->req->buf->size = trash.size;
|
||||
s->req->buf->size = global.tune.bufsize;
|
||||
channel_init(s->req);
|
||||
s->req->prod = &s->si[0];
|
||||
s->req->cons = &s->si[1];
|
||||
@ -1266,7 +1266,7 @@ static struct session *peer_session_create(struct peer *peer, struct peer_sessio
|
||||
if ((s->rep->buf = pool_alloc2(pool2_buffer)) == NULL)
|
||||
goto out_fail_rep_buf; /* no memory */
|
||||
|
||||
s->rep->buf->size = trash.size;
|
||||
s->rep->buf->size = global.tune.bufsize;
|
||||
channel_init(s->rep);
|
||||
s->rep->prod = &s->si[1];
|
||||
s->rep->cons = &s->si[0];
|
||||
|
Loading…
Reference in New Issue
Block a user