Merge pull request #3685 from rabbitmq/lukebakken/core-started-before-postlaunch-phase

Set core_started before running postlaunch phase
This commit is contained in:
Luke Bakken 2021-11-15 07:04:25 -08:00 committed by GitHub
commit 939673b31d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -913,8 +913,8 @@ start(normal, []) ->
?LOG_DEBUG("== Boot steps =="),
ok = rabbit_boot_steps:run_boot_steps([rabbit | Plugins]),
run_postlaunch_phase(Plugins),
rabbit_boot_state:set(core_started),
run_postlaunch_phase(Plugins),
{ok, SupPid}
catch
throw:{error, _} = Error ->