Skip to content

Commit e02dcc9

Browse files
committed
Switch to PG Bouncer image version to 1.9
[resolves #402] Signed-off-by: Mark Paluch <[email protected]>
1 parent f25352a commit e02dcc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/io/r2dbc/postgresql/util/PgBouncer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 the original author or authors.
2+
* Copyright 2019-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@ public final class PgBouncer implements AutoCloseable {
2828
private final GenericContainer<?> container;
2929

3030
public PgBouncer(PostgresqlServerExtension server, String poolMode) {
31-
this.container = new GenericContainer<>("edoburu/pgbouncer")
31+
this.container = new GenericContainer<>("edoburu/pgbouncer:1.9.0")
3232
.withExposedPorts(PostgreSQLContainer.POSTGRESQL_PORT)
3333
.withEnv("POOL_MODE", poolMode)
3434
.withEnv("SERVER_RESET_QUERY_ALWAYS", "1")

0 commit comments

Comments
 (0)