Skip to content

Commit

Permalink
Reactive Hibernate now uses the latest Postgres version
Browse files Browse the repository at this point in the history
  • Loading branch information
fedinskiy committed Apr 1, 2022
1 parent e984b16 commit 5136210
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 51 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
import io.quarkus.test.services.QuarkusApplication;

@QuarkusScenario
public class Postgresql13DatabaseIT extends AbstractReactiveDatabaseIT {
public class PostgresqlDatabaseIT extends AbstractReactiveDatabaseIT {

private static final String POSTGRES_USER = "quarkus_test";
private static final String POSTGRES_PASSWORD = "quarkus_test";
private static final String POSTGRES_DATABASE = "quarkus_test";
static final int POSTGRES_PORT = 5432;
private static final int POSTGRES_PORT = 5432;

@Container(image = "${postgresql.13.image}", port = POSTGRES_PORT, expectedLog = "listening on IPv4 address")
static PostgresqlService database = new PostgresqlService()
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package io.quarkus.ts.reactive.openshift;

import org.junit.jupiter.api.Disabled;

import io.quarkus.test.scenarios.OpenShiftScenario;
import io.quarkus.ts.reactive.PostgresqlDatabaseIT;

@OpenShiftScenario
//TODO: enable disabled methods then the issue will be fixed
public class OpenShiftPostgresqlIT extends PostgresqlDatabaseIT {
@Override
@Disabled("https://github.com/quarkusio/quarkus/issues/21700")
public void connectToUniEndpoint() {
}

@Override
@Disabled("https://github.com/quarkusio/quarkus/issues/21700")
public void connectToMultiEndpoint() {
}
}

0 comments on commit 5136210

Please sign in to comment.