JianBo He 1 год назад
Родитель
Сommit
a8af90f912
2 измененных файлов с 16 добавлено и 3 удалено
  1. 15 3
      apps/emqx_gateway/src/emqx_gateway.app.src
  2. 1 0
      changes/ce/fix-13258.en.md

+ 15 - 3
apps/emqx_gateway/src/emqx_gateway.app.src

@@ -4,9 +4,21 @@
     {vsn, "0.1.33"},
     {registered, []},
     {mod, {emqx_gateway_app, []}},
-    {applications, [kernel, stdlib, emqx, emqx_auth, emqx_ctl, emqx_auth_http,
-                    emqx_auth_mnesia, emqx_auth_jwt, emqx_auth_mysql, emqx_auth_postgresql,
-                    emqx_auth_mongodb, emqx_auth_redis, emqx_auth_ldap]},
+    {applications, [
+        kernel,
+        stdlib,
+        emqx,
+        emqx_auth,
+        emqx_ctl,
+        emqx_auth_http,
+        emqx_auth_mnesia,
+        emqx_auth_jwt,
+        emqx_auth_mysql,
+        emqx_auth_postgresql,
+        emqx_auth_mongodb,
+        emqx_auth_redis,
+        emqx_auth_ldap
+    ]},
     {env, []},
     {modules, []},
     {licenses, ["Apache 2.0"]},

+ 1 - 0
changes/ce/fix-13258.en.md

@@ -0,0 +1 @@
+Fix an issue where the MQTT-SN gateway would not restart correctly due to incorrect startup order of gateway dependencies.