From 316b687541e8ec912d625510e5548060a63e75f6 Mon Sep 17 00:00:00 2001 From: kballou Date: Fri, 17 Oct 2014 19:18:39 -0600 Subject: Add configuration pool size --- config/config.exs | 1 + mix.exs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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 -- cgit v1.2.1