diff --git a/src/agVstCli/agAgencyPool_sup.erl b/src/agVstCli/agAgencyPool_sup.erl index 12db5ab..1f84aa4 100644 --- a/src/agVstCli/agAgencyPool_sup.erl +++ b/src/agVstCli/agAgencyPool_sup.erl @@ -12,4 +12,4 @@ start_link() -> supervisor:start_link({local, ?MODULE}, ?MODULE, []). init([]) -> - {ok, {{one_for_one, 100, 3600}, []}}. + {ok, {{one_for_one, 1000, 3600}, []}}. diff --git a/src/eArango_sup.erl b/src/eArango_sup.erl index 380fe4c..45f4644 100644 --- a/src/eArango_sup.erl +++ b/src/eArango_sup.erl @@ -14,7 +14,7 @@ start_link() -> supervisor:start_link({local, ?SERVER}, ?MODULE, []). init([]) -> - SupFlags = #{strategy => one_for_one, intensity => 100, period => 3600}, + SupFlags = #{strategy => one_for_one, intensity => 1000, period => 3600}, PoolMgrSpec = #{ id => agAgencyPoolMgr,