Skip to content

Commit

Permalink
Merge pull request #94 from arenadata/hotfix/tests-connection-pool-size
Browse files Browse the repository at this point in the history
[Hotfix] Fix max connection pool size in smart-metastore tests
  • Loading branch information
iamlapa authored Aug 14, 2024
2 parents 113b5ec + 85a2f04 commit ab3c7d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions smart-metastore/src/test/resources/druid-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<entry key="username">""</entry>
<entry key="password">""</entry>

<entry key="initialSize">8</entry>
<entry key="minIdle">4</entry>
<entry key="maxActive">16</entry>
<entry key="initialSize">1</entry>
<entry key="minIdle">1</entry>
<entry key="maxActive">1</entry>

<entry key="maxWait">60000</entry>
<entry key="timeBetweenEvictionRunsMillis">90000</entry>
Expand Down

0 comments on commit ab3c7d9

Please sign in to comment.