summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_peer_discovery_common/src/rabbit_peer_discovery_common_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'deps/rabbitmq_peer_discovery_common/src/rabbit_peer_discovery_common_sup.erl')
-rw-r--r--deps/rabbitmq_peer_discovery_common/src/rabbit_peer_discovery_common_sup.erl24
1 files changed, 24 insertions, 0 deletions
diff --git a/deps/rabbitmq_peer_discovery_common/src/rabbit_peer_discovery_common_sup.erl b/deps/rabbitmq_peer_discovery_common/src/rabbit_peer_discovery_common_sup.erl
new file mode 100644
index 0000000000..8166be5013
--- /dev/null
+++ b/deps/rabbitmq_peer_discovery_common/src/rabbit_peer_discovery_common_sup.erl
@@ -0,0 +1,24 @@
+%% This Source Code Form is subject to the terms of the Mozilla Public
+%% License, v. 2.0. If a copy of the MPL was not distributed with this
+%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
+%%
+%% Copyright (c) 2007-2020 VMware, Inc. or its affiliates. All rights reserved.
+%%
+
+-module(rabbit_peer_discovery_common_sup).
+
+-behaviour(supervisor).
+
+-include_lib("rabbit_common/include/rabbit.hrl").
+
+-export([init/1]).
+-export([start_link/0]).
+
+start_link() ->
+ supervisor:start_link({local, ?MODULE}, ?MODULE, []).
+
+init([]) ->
+ Cleanup = {rabbit_peer_discovery_cleanup,
+ {rabbit_peer_discovery_cleanup, start_link, []},
+ permanent, ?WORKER_WAIT, worker, [rabbit_peer_discovery_cleanup]},
+ {ok, {{one_for_one, 10, 10}, [Cleanup]}}.