refactor: rename cluster_rpc_handler to cluster_rpc_cleaner
this reflects what is actually does
This commit is contained in:
parent
e1d5894209
commit
b16c516e6b
|
@ -13,7 +13,9 @@
|
||||||
%% See the License for the specific language governing permissions and
|
%% See the License for the specific language governing permissions and
|
||||||
%% limitations under the License.
|
%% limitations under the License.
|
||||||
%%--------------------------------------------------------------------
|
%%--------------------------------------------------------------------
|
||||||
-module(emqx_cluster_rpc_handler).
|
|
||||||
|
%% @doc This module is responsible for cleaning up the cluster RPC MFA.
|
||||||
|
-module(emqx_cluster_rpc_cleaner).
|
||||||
|
|
||||||
-behaviour(gen_server).
|
-behaviour(gen_server).
|
||||||
|
|
|
@ -36,7 +36,7 @@ init([]) ->
|
||||||
ChildSpecs =
|
ChildSpecs =
|
||||||
[
|
[
|
||||||
child_spec(emqx_cluster_rpc, []),
|
child_spec(emqx_cluster_rpc, []),
|
||||||
child_spec(emqx_cluster_rpc_handler, [])
|
child_spec(emqx_cluster_rpc_cleaner, [])
|
||||||
],
|
],
|
||||||
{ok, {SupFlags, ChildSpecs}}.
|
{ok, {SupFlags, ChildSpecs}}.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue