summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/config.exs1
-rw-r--r--mix.exs3
2 files changed, 3 insertions, 1 deletions
diff --git a/config/config.exs b/config/config.exs
index 0d0917d..92893a1 100644
--- a/config/config.exs
+++ b/config/config.exs
@@ -1,3 +1,4 @@
# This file is responsible for configuring your application
# and its dependencies with the aid of the Mix.Config module.
use Mix.Config
+config(:poolparty, :pool_size, 8)
diff --git a/mix.exs b/mix.exs
index 0e806e6..814bfe9 100644
--- a/mix.exs
+++ b/mix.exs
@@ -9,7 +9,8 @@ defmodule Poolparty.Mixfile do
end
def application do
- [applications: [:logger]]
+ [applications: [:logger],
+ env: [pool_size: -1]]
end
defp deps do