Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Jul 29, 2024
1 parent 2292abe commit 4ae1282
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,6 @@ public CachingCatalog(Catalog wrapped, Duration expirationInterval, Ticker ticke
.build();
}

@Override
public void createDatabase(String name, boolean ignoreIfExists, Map<String, String> properties)
throws DatabaseAlreadyExistException {
super.createDatabase(name, ignoreIfExists, properties);
databaseCache.put(name, properties);
}

@Override
public Map<String, String> loadDatabaseProperties(String databaseName)
throws DatabaseNotExistException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static void startContainers() {
}

@Test
@Timeout(120)
@Timeout(180)
public void testActionRunResult() throws Exception {
Map<String, String> mySqlConfig = getBasicMySqlConfig();
mySqlConfig.put(
Expand Down

0 comments on commit 4ae1282

Please sign in to comment.