chore: remove the pool_size maximum limit

This commit is contained in:
JianBo He 2022-01-18 14:22:23 +08:00
parent 6d87db80c1
commit e1933261c8
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();