Skip to content

Commit 80e6082

Browse files
committed
TEST/MINOR: fix random fails on CI when removing a default section
1 parent bfba9bb commit 80e6082

File tree

1 file changed

+32
-3
lines changed

1 file changed

+32
-3
lines changed

e2e/tests/defaults/data/haproxy.cfg

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,33 @@
1+
# _version=42
2+
3+
global
4+
log 127.0.0.1 local2
5+
chroot /var/lib/haproxy
6+
pidfile /var/run/haproxy.pid
7+
maxconn 4000
8+
user haproxy
9+
group haproxy
10+
stats socket /var/lib/haproxy/stats level admin
11+
12+
defaults mydefaults
13+
mode http
14+
log global
15+
option httplog
16+
option dontlognull
17+
option http-server-close
18+
option forwardfor except 127.0.0.0/8
19+
option redispatch
20+
retries 3
21+
timeout http-request 10s
22+
timeout queue 1m
23+
timeout connect 10s
24+
timeout client 1m
25+
timeout server 1m
26+
timeout http-keep-alive 10s
27+
timeout check 10s
28+
maxconn 3000
29+
130
defaults unnamed_defaults_1
2-
mode http
3-
balance roundrobin
4-
timeout client 30000
31+
mode http
32+
balance roundrobin
33+
timeout client 30000

0 commit comments

Comments
 (0)