Merge pull request #6777 from HJianBo/fix-conn-pool-size

chore: remove the pool_size maximum limit
This commit is contained in:
JianBo He 2022-01-18 16:49:40 +08:00 committed by GitHub
commit 689bfc65ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ database(_) -> undefined.
pool_size(type) -> integer();
pool_size(default) -> 8;
pool_size(validator) -> [?MIN(1), ?MAX(64)];
pool_size(validator) -> [?MIN(1)];
pool_size(_) -> undefined.
username(type) -> binary();