From 114efb9818d63df0c5d281b2de890f4947df9796 Mon Sep 17 00:00:00 2001 From: Andrew Mayorov Date: Fri, 2 Feb 2024 23:28:37 +0100 Subject: [PATCH] fix(boot): add `emqx_durable_storage` to the list of restarted apps --- apps/emqx_machine/src/emqx_machine_boot.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/emqx_machine/src/emqx_machine_boot.erl b/apps/emqx_machine/src/emqx_machine_boot.erl index ee6e02986..f4daca550 100644 --- a/apps/emqx_machine/src/emqx_machine_boot.erl +++ b/apps/emqx_machine/src/emqx_machine_boot.erl @@ -31,7 +31,7 @@ -endif. %% These apps are always (re)started by emqx_machine: --define(BASIC_REBOOT_APPS, [gproc, esockd, ranch, cowboy, emqx]). +-define(BASIC_REBOOT_APPS, [gproc, esockd, ranch, cowboy, emqx_durable_storage, emqx]). %% If any of these applications crash, the entire EMQX node shuts down: -define(BASIC_PERMANENT_APPS, [mria, ekka, esockd, emqx]).