Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: failing integration tests due to not waiting for TAZ cluster to fully failover #472

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: accidentally removed line
karenc-bq committed Mar 28, 2024
commit 9eebe0aafca86a4029afef958e788bc355def2c2
Original file line number Diff line number Diff line change
@@ -195,7 +195,8 @@ private static TestEnvironment createAuroraOrMultiAzEnvironment(TestEnvironmentR
if (result instanceof Exception) {
throw new RuntimeException((Exception) result);
}
if (result instanceof TestEnvironment resultTestEnvironment) {
if (result instanceof TestEnvironment) {
TestEnvironment resultTestEnvironment = (TestEnvironment) result;
LOGGER.finer(() -> String.format("Use pre-created DB cluster: %s.cluster-%s",
resultTestEnvironment.auroraClusterName, resultTestEnvironment.auroraClusterDomain));