Skip to content

Commit da341dc

Browse files
authored
chore(ci): fix haproxy configuration for archlinux (#46)
1 parent 27cecb6 commit da341dc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

integration_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ func setupQuestDB0(ctx context.Context, auth ilpAuthType, setupProxy bool) (*que
192192
)
193193
if setupProxy || auth == httpBasicAuth || auth == httpBearerAuth {
194194
req = testcontainers.ContainerRequest{
195-
Image: "haproxy:2.6.0",
195+
Image: "haproxy:2.6.4",
196196
ExposedPorts: []string{"8443/tcp", "8444/tcp", "8445/tcp", "8888/tcp"},
197197
WaitingFor: wait.ForHTTP("/").WithPort("8888"),
198198
Networks: []string{networkName},

test/haproxy.cfg

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
global
2+
maxconn 256
3+
14
frontend httpfront
25
bind 0.0.0.0:8888
36
mode http
@@ -26,4 +29,3 @@ frontend httpbasicauthfront
2629
mode http
2730
http-request auth unless { http_auth(httpcreds) }
2831
default_backend http
29-

0 commit comments

Comments
 (0)