Skip to content

Commit a3ac13e

Browse files
authored
Merge pull request #201 from a-random-lemurian/update-docker-container
fix: Use rabbitmq:4.1.1-alpine in integration test
2 parents 3431dc6 + c1325d6 commit a3ac13e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func prepareDockerTest(t *testing.T) (connStr string) {
2020
ctx, cancel := context.WithCancel(context.Background())
2121
defer cancel()
2222

23-
out, err := exec.CommandContext(ctx, "docker", "run", "--rm", "--detach", "--publish=5672:5672", "--quiet", "--", "rabbitmq:3-alpine").Output()
23+
out, err := exec.CommandContext(ctx, "docker", "run", "--rm", "--detach", "--publish=5672:5672", "--quiet", "--", "rabbitmq:4.1.1-alpine").Output()
2424
if err != nil {
2525
t.Log("container id", string(out))
2626
t.Fatalf("error launching rabbitmq in docker: %v", err)

0 commit comments

Comments
 (0)