Ecto 3 pool_size dynamic in distillary

The problem is that you are passing the pool_size as a string but Ecto expects an integer. What happens if you do pool_size: ${DB_POOL_SIZE}? Or pool_size: String.to_integer("${DB_POOL_SIZE}").

1 Like