Skip to content

Commit fc9b6f8

Browse files
committed
chore(ci): fix haproxy configuration for archlinux (#46)
1 parent 1afb3f5 commit fc9b6f8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

integration_test.go

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 1 deletion
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)