Skip to content

Commit e5c9c4f

Browse files
committed
Fix the mysql host
1 parent 58276f1 commit e5c9c4f

File tree

1 file changed

+2
-2
lines changed
  • integration-tests/src/test/java/oracle/kubernetes/operator

1 file changed

+2
-2
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/SitConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ protected static void staticPrepare(String domainInputYaml, String domainScript)
7878
Assert.assertEquals(0, result.exitValue());
7979

8080
// fqdn = TestUtils.getHostName();
81-
82-
JDBC_URL = "jdbc:mysql://" + fqdn + ":" + MYSQL_DB_PORT + "/";
81+
82+
JDBC_URL = "jdbc:mysql://" + TestUtils.getHostName() + ":" + MYSQL_DB_PORT + "/";
8383
// copy the configuration override files to replacing the JDBC_URL token
8484
String[] files = {
8585
"config.xml",

0 commit comments

Comments
 (0)