Skip to content

Commit

Permalink
Remove PostgreSQL image workaround
Browse files Browse the repository at this point in the history
Removes workaround for a failure reported in
quarkus-qe/quarkus-test-framework#641 and
observed in quarkus-qe#971.
  • Loading branch information
jsmrcka committed Feb 15, 2023
1 parent 8b5d98e commit 0f22a09
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,6 @@
<ts.global.s2i.quarkus.native.builder.image>${ts.global.s2i.quarkus.native.builder.image}</ts.global.s2i.quarkus.native.builder.image>
<!-- Services used in test suite -->
<postgresql.latest.image>${postgresql.latest.image}</postgresql.latest.image>
<!-- FIXME: if the same image name is used in two test classes, the second one fails -->
<postgresql.also.latest.image>docker.io/library/postgres:15.1</postgresql.also.latest.image>
<!-- TODO: investigate further in https://github.com/quarkus-qe/quarkus-test-suite/issues/627 -->
<elastic.71.image>docker.io/bitnami/elasticsearch:7.17.6</elastic.71.image>
<!--TODO change into 5.7 when this fixed https://github.com/docker-library/mysql/issues/844 -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class XAPostgresIT extends AbstractSqlDatabaseIT {

static final int POSTGRESQL_PORT = 5432;

@Container(image = "${postgresql.also.latest.image}", port = POSTGRESQL_PORT, expectedLog = "listening on IPv4 address")
@Container(image = "${postgresql.latest.image}", port = POSTGRESQL_PORT, expectedLog = "listening on IPv4 address")
static PostgresqlService database = new PostgresqlService()
.withUser("user")
.withPassword("user")
Expand Down

0 comments on commit 0f22a09

Please sign in to comment.