Thales Macedo Garitezi 2 лет назад
Родитель
Сommit
1ab009f081

+ 1 - 1
apps/emqx/src/emqx_cm_sup.erl

@@ -47,7 +47,7 @@ init([]) ->
     Locker = child_spec(emqx_cm_locker, 5000, worker),
     Registry = child_spec(emqx_cm_registry, 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 =
         [
             Banned,

+ 1 - 1
apps/emqx/src/emqx_persistent_session_ds_gc_sup.erl

@@ -13,7 +13,7 @@
 %% See the License for the specific language governing permissions and
 %% limitations under the License.
 %%--------------------------------------------------------------------
--module(emqx_persistent_session_ds_gc_sup).
+-module(emqx_persistent_session_ds_sup).
 
 -behaviour(supervisor).