summaryrefslogtreecommitdiff
path: root/src/rexi/src/rexi_server_mon.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rexi/src/rexi_server_mon.erl')
-rw-r--r--src/rexi/src/rexi_server_mon.erl6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/rexi/src/rexi_server_mon.erl b/src/rexi/src/rexi_server_mon.erl
index 86fecaff6..e8e519187 100644
--- a/src/rexi/src/rexi_server_mon.erl
+++ b/src/rexi/src/rexi_server_mon.erl
@@ -67,7 +67,7 @@ cluster_stable(Server) ->
init(ChildMod) ->
{ok, _Mem3Cluster} = mem3_cluster:start_link(?MODULE, self(),
- ?CLUSTER_STABILITY_PERIOD_SEC, ?CLUSTER_STABILITY_PERIOD_SEC),
+ cluster_stability_period(), cluster_stability_period()),
{ok, ChildMod}.
@@ -172,3 +172,7 @@ stop_server(ChildMod, ChildId) ->
sup_module(ChildMod) ->
list_to_atom(lists:concat([ChildMod, "_sup"])).
+
+
+cluster_stability_period() ->
+ config:get_integer("rexi", "cluster_stability_period", 300).