Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ The following table lists the connection properties used with the AWS Advanced P
### Using the AWS Advanced Python Driver

Technical documentation regarding the functionality of the AWS Advanced Python Driver will be maintained in this GitHub repository. Since the AWS Advanced Python Driver requires an underlying Python driver, please refer to the individual driver's documentation for driver-specific information.
To find all the documentation and concrete examples on how to use the AWS Advanced Python Driver, please refer to the [AWS Advanced Python Driver Documentation](./docs/README) page.
To find all the documentation and concrete examples on how to use the AWS Advanced Python Driver, please refer to the [AWS Advanced Python Driver Documentation](./docs/README.md) page.

### Known Limitations

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,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));

Expand Down