+rabbitmq-server (3.6.6-1~u14.04+mos3) mos7.0-hotfix; urgency=medium
+
+ * Rename 'autoheal' option, so it'll not be enabled by fuel-library.
+
+ -- Alexey Lebedeff <alebedev@mirantis.com> Wed, 30 Nov 2016 14:50:43 +0300
+
rabbitmq-server (3.6.6-1~u14.04+mos2) mos7.0-hotfix; urgency=medium
* Use HiPE-compilation
--- /dev/null
+--- a/deps/rabbit/src/rabbit_autoheal.erl
++++ b/deps/rabbit/src/rabbit_autoheal.erl
+@@ -147,8 +147,8 @@ maybe_start(State) ->
+
+ enabled() ->
+ case application:get_env(rabbit, cluster_partition_handling) of
+- {ok, autoheal} -> true;
+- {ok, {pause_if_all_down, _, autoheal}} -> true;
++ {ok, really_autoheal} -> true;
++ {ok, {pause_if_all_down, _, really_autoheal}} -> true;
+ _ -> false
+ end.
+
+--- a/deps/rabbit/src/rabbit_node_monitor.erl
++++ b/deps/rabbit/src/rabbit_node_monitor.erl
+@@ -662,13 +662,15 @@ handle_dead_node(Node, State = #state{au
+ fun in_preferred_partition/0)
+ end,
+ case HowToRecover of
+- autoheal -> State#state{autoheal =
++ really_autoheal -> State#state{autoheal =
+ rabbit_autoheal:node_down(Node, Autoheal)};
+ _ -> State
+ end;
+ {ok, ignore} ->
+ State;
+ {ok, autoheal} ->
++ State;
++ {ok, really_autoheal} ->
+ State#state{autoheal = rabbit_autoheal:node_down(Node, Autoheal)};
+ {ok, Term} ->
+ rabbit_log:warning("cluster_partition_handling ~p unrecognised, "