refactor: rename supervisor

This commit is contained in:
Thales Macedo Garitezi 2023-11-30 11:55:48 -03:00
parent 880f5e8f89
commit 1ab009f081
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ init([]) ->
Locker = child_spec(emqx_cm_locker, 5000, worker), Locker = child_spec(emqx_cm_locker, 5000, worker),
Registry = child_spec(emqx_cm_registry, 5000, worker), Registry = child_spec(emqx_cm_registry, 5000, worker),
Manager = child_spec(emqx_cm, 5000, worker), Manager = child_spec(emqx_cm, 5000, worker),
DSSessionGCSup = child_spec(emqx_persistent_session_ds_gc_sup, infinity, supervisor), DSSessionGCSup = child_spec(emqx_persistent_session_ds_sup, infinity, supervisor),
Children = Children =
[ [
Banned, Banned,

View File

@ -13,7 +13,7 @@
%% 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_persistent_session_ds_gc_sup). -module(emqx_persistent_session_ds_sup).
-behaviour(supervisor). -behaviour(supervisor).