Merge pull request #6651 from DDDHuang/fix_update3

fix(prometheus): restart error
This commit is contained in:
DDDHuang 2022-01-05 17:37:50 +08:00 committed by GitHub
commit d39fafbed2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -103,8 +103,8 @@ do_stop() ->
end. end.
do_restart() -> do_restart() ->
ok = do_start(),
ok = do_stop(), ok = do_stop(),
ok = do_start(),
ok. ok.
cluster_call(F, A) -> cluster_call(F, A) ->

View File

@ -85,8 +85,8 @@ do_stop() ->
emqx_statsd_sup:ensure_child_stopped(?APP). emqx_statsd_sup:ensure_child_stopped(?APP).
do_restart() -> do_restart() ->
ok = do_start(),
ok = do_stop(), ok = do_stop(),
ok = do_start(),
ok. ok.
cluster_call(F, A) -> cluster_call(F, A) ->