Skip to content

Commit

Permalink
fux
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Sep 25, 2024
1 parent 40743e7 commit ca500bc
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,7 @@ protected JdbcCatalog(FileIO fileIO, String catalogKey, Options options, String
this.warehouse = warehouse;
Preconditions.checkNotNull(options, "Invalid catalog properties: null");
this.connections =
new JdbcClientPool(
options.get(CatalogOptions.CLIENT_POOL_SIZE),
options.get(CatalogOptions.URI.key()),
options.toMap());
new JdbcClientPool(1, options.get(CatalogOptions.URI.key()), options.toMap());
try {
initializeCatalogTablesIfNeed();
} catch (SQLException e) {
Expand Down

0 comments on commit ca500bc

Please sign in to comment.