We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4ceb49 commit e3b98adCopy full SHA for e3b98ad
wrapper/src/test/java/software/amazon/jdbc/hostlistprovider/AuroraHostListProviderTest.java
@@ -467,6 +467,7 @@ void testIdentifyConnectionHostInTopology() throws SQLException {
467
"jdbc:someprotocol://",
468
mockHostListProviderService,
469
"jdbc:someprotocol://url"));
470
+ when(auroraHostListProvider.getCachedTopology()).thenReturn(cachedTopology);
471
when(mockResultSet.next()).thenReturn(true);
472
when(mockResultSet.getString(eq(1))).thenReturn("instance-a-1");
473
when(auroraHostListProvider.refresh(eq(mockConnection))).thenReturn(cachedTopology);
0 commit comments