Skip to content

Commit

Permalink
fix bug with instance id
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonli-improving committed Feb 29, 2024
1 parent 00a401b commit 7f8473b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public void auroraTestTimestamp(TestDriver testDriver) throws SQLException, Pars
TestEnvironment.getCurrent().getInfo().getDatabaseInfo().getDefaultDbName());
LOGGER.finest("Connecting to " + url);

String dbInstanceIdentifier = TestEnvironment.getCurrent().getInfo().getAuroraClusterName();
String dbInstanceIdentifier = TestEnvironment.getCurrent().getInfo().getDatabaseInfo().getInstances().get(0).getInstanceId();
Region region = Region.of(TestEnvironment.getCurrent().getInfo().getAuroraRegion());
String caCertificateIdentifier = TestEnvironment.getCurrent().getInfo().getAuroraRegion();
RdsClient client = RdsClient.builder()
Expand Down

0 comments on commit 7f8473b

Please sign in to comment.