fix(syncer): start syncer pool before broker pool

As the latter depends on the former.
This commit is contained in:
Andrew Mayorov 2024-01-08 20:00:32 +01:00
parent a1ccf85c66
commit 38e13f2337
No known key found for this signature in database
GPG Key ID: 2837C62ACFBFED5D
1 changed files with 1 additions and 1 deletions

View File

@ -66,4 +66,4 @@ init([]) ->
modules => [emqx_broker_helper]
},
{ok, {{one_for_all, 0, 1}, [BrokerPool, SyncerPool, SharedSub, Helper]}}.
{ok, {{one_for_all, 0, 1}, [SyncerPool, BrokerPool, SharedSub, Helper]}}.