Skip to content

Commit 8144517

Browse files
authored
fix: rebase error (#514)
1 parent dc19d6c commit 8144517

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ The following table lists the connection properties used with the AWS Advanced P
139139
### Using the AWS Advanced Python Driver
140140

141141
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.
142-
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.
142+
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.
143143

144144
### Known Limitations
145145

tests/integration/host/src/test/java/integration/host/TestEnvironment.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ private static TestEnvironment createAuroraOrMultiAzEnvironment(TestEnvironmentR
187187
if (result instanceof Exception) {
188188
throw new RuntimeException((Exception) result);
189189
}
190-
if (result instanceof TestEnvironment resultTestEnvironment) {
190+
if (result instanceof TestEnvironment) {
191+
TestEnvironment resultTestEnvironment = (TestEnvironment) result;
191192
LOGGER.finer(() -> String.format("Use pre-created DB cluster: %s.cluster-%s",
192193
resultTestEnvironment.auroraClusterName, resultTestEnvironment.auroraClusterDomain));
193194

0 commit comments

Comments
 (0)