Skip to content

Commit

Permalink
(chores) itests-sql: upgrade postgresql image so it works on ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
orpiske committed Jul 27, 2022
1 parent 4dcb2d6 commit b2ffa02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public Map<String, String> messageHeaders(String text, int current) {
}

public CamelSinkSQLITCase() {
JdbcDatabaseContainer<?> container = new PostgreSQLContainer<>("postgres:9.6.2")
JdbcDatabaseContainer<?> container = new PostgreSQLContainer<>("postgres:13.0")
.withDatabaseName(DATABASE_NAME)
.withUsername(USERNAME)
.withPassword(PASSWORD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class CamelSourceSQLITCase extends CamelSourceTestSupport {
private String port;

public CamelSourceSQLITCase() {
JdbcDatabaseContainer<?> container = new PostgreSQLContainer<>("postgres:9.6.2")
JdbcDatabaseContainer<?> container = new PostgreSQLContainer<>("postgres:13.0")
.withDatabaseName("camel")
.withUsername("ckc")
.withPassword("ckcDevel123")
Expand Down

0 comments on commit b2ffa02

Please sign in to comment.