Skip to content

Commit

Permalink
Fix mistake in formation of test host suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-congo committed Jan 22, 2025
1 parent 1bbe5ee commit c486682
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ private static void createDbCluster(TestEnvironment env, int numOfInstances) {
}

final String instanceEndpoint = dbInstances.get(0).endpoint().address();
env.auroraClusterDomain = instanceEndpoint.substring(instanceEndpoint.indexOf("."));
env.auroraClusterDomain = instanceEndpoint.substring(instanceEndpoint.indexOf(".") + 1);
env.info.setDatabaseEngine(engine);
env.info.setDatabaseEngineVersion(engineVersion);
LOGGER.finer(
Expand Down

0 comments on commit c486682

Please sign in to comment.