Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): fix haproxy configuration for docker v23+ #46

Merged
merged 1 commit into from
Jul 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integration_test.go
Original file line number Diff line number Diff line change
@@ -192,7 +192,7 @@ func setupQuestDB0(ctx context.Context, auth ilpAuthType, setupProxy bool) (*que
)
if setupProxy || auth == httpBasicAuth || auth == httpBearerAuth {
req = testcontainers.ContainerRequest{
Image: "haproxy:2.6.0",
Image: "haproxy:2.6.4",
ExposedPorts: []string{"8443/tcp", "8444/tcp", "8445/tcp", "8888/tcp"},
WaitingFor: wait.ForHTTP("/").WithPort("8888"),
Networks: []string{networkName},
4 changes: 3 additions & 1 deletion test/haproxy.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
global
maxconn 256

frontend httpfront
bind 0.0.0.0:8888
mode http
@@ -26,4 +29,3 @@ frontend httpbasicauthfront
mode http
http-request auth unless { http_auth(httpcreds) }
default_backend http

Loading
Oops, something went wrong.