mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-09-21 13:51:26 +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.
38 lines
772 B
Plaintext
38 lines
772 B
Plaintext
# Shipped with the commit fixing the bug.
|
|
|
|
#REGTEST_TYPE=bug
|
|
|
|
varnishtest "Stick Table: Crash when accessing unknown key."
|
|
feature ignore_unknown_macro
|
|
|
|
server s0 {
|
|
rxreq
|
|
txresp
|
|
} -start
|
|
|
|
haproxy h0 -conf {
|
|
global
|
|
.if feature(THREAD)
|
|
thread-groups 1
|
|
.endif
|
|
|
|
defaults
|
|
timeout connect "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
timeout client "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
timeout server "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
|
|
frontend test
|
|
mode http
|
|
bind "fd@${fe1}"
|
|
stick-table type ip size 1m expire 1h store gpc0
|
|
http-request deny if { src,table_trackers(test) eq 1 }
|
|
http-request deny if { src,in_table(test) }
|
|
http-request deny deny_status 200
|
|
} -start
|
|
|
|
client c0 -connect ${h0_fe1_sock} {
|
|
txreq -url "/"
|
|
rxresp
|
|
expect resp.status == 200
|
|
} -run
|