mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-06 23:27:04 +02:00
When threads are enabled and running on a machine with multiple CCX or multiple nodes, thread groups are now enabled since 3.3-dev2, causing load-balancing algorithms to randomly fail due to incoming connections spreading over multiple groups and using different load balancing indexes. Let's just force "thread-groups 1" into all configs when threads are enabled to avoid this.
51 lines
793 B
Plaintext
51 lines
793 B
Plaintext
varnishtest "HTTP/2 cookie concatenation"
|
|
feature ignore_unknown_macro
|
|
|
|
server s1 {
|
|
rxreq
|
|
expect req.http.cookie == "c1=foo; c2=bar; c3=baz"
|
|
txresp
|
|
} -start
|
|
|
|
haproxy h1 -conf {
|
|
global
|
|
.if feature(THREAD)
|
|
thread-groups 1
|
|
.endif
|
|
|
|
defaults
|
|
timeout client 30s
|
|
timeout server 30s
|
|
timeout connect 30s
|
|
mode http
|
|
|
|
frontend fe1
|
|
bind "fd@${fe1}" proto h2
|
|
use_backend be1
|
|
|
|
backend be1
|
|
server srv1 ${s1_addr}:${s1_port}
|
|
} -start
|
|
|
|
client c1 -connect ${h1_fe1_sock} {
|
|
txpri
|
|
stream 0 {
|
|
txsettings
|
|
rxsettings
|
|
txsettings -ack
|
|
rxsettings
|
|
expect settings.ack == true
|
|
} -run
|
|
|
|
stream 1 {
|
|
txreq \
|
|
-req "GET" \
|
|
-scheme "http" \
|
|
-url "/" \
|
|
-hdr "cookie" "c1=foo" \
|
|
-hdr "cookie" "c2=bar" \
|
|
-hdr "cookie" "c3=baz"
|
|
rxhdrs
|
|
} -run
|
|
} -run
|