--- /dev/null
+Description: Backport management plugin fix
+ Backport management plugin fix for bug that prevented node from starting after network split.
+Author: Alexey Lebedeff <alebedev@mirantis.com>
+Origin: backport, https://github.com/rabbitmq/rabbitmq-management/pull/84
+Bug: https://github.com/rabbitmq/rabbitmq-management/issues/81
+Applied-Upstream: 3.5.7
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/plugins-src/rabbitmq-management/src/rabbit_mgmt_sup_sup.erl
++++ b/plugins-src/rabbitmq-management/src/rabbit_mgmt_sup_sup.erl
+@@ -57,7 +57,8 @@ start_child() -> supervisor2:start_child
+ %%----------------------------------------------------------------------------
+
+ init([]) ->
+- {ok, {{one_for_one, 0, 1}, [sup()]}}.
++ timer:apply_after(0, ?MODULE, start_child, []),
++ {ok, {{one_for_one, 0, 1}, []}}.
+
+ sup() ->
+ {rabbit_mgmt_sup, {rabbit_mgmt_sup, start_link, []},