refactor: rename cluster_rpc_handler to cluster_rpc_cleaner

this reflects what is actually does
This commit is contained in:
Zaiming (Stone) Shi 2023-04-04 10:28:47 +02:00
parent e1d5894209
commit b16c516e6b
2 changed files with 4 additions and 2 deletions

View File

@ -13,7 +13,9 @@
%% See the License for the specific language governing permissions and
%% 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).

View File

@ -36,7 +36,7 @@ init([]) ->
ChildSpecs =
[
child_spec(emqx_cluster_rpc, []),
child_spec(emqx_cluster_rpc_handler, [])
child_spec(emqx_cluster_rpc_cleaner, [])
],
{ok, {SupFlags, ChildSpecs}}.