From 198ccd320bac907a22162a452a11e9bfcbff1f48 Mon Sep 17 00:00:00 2001 From: Thales Macedo Garitezi Date: Fri, 14 Jun 2024 15:02:33 -0300 Subject: [PATCH] fix: add `emqx_s3` to `reboot_lists.eterm` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise, it's unconditionally started as a permanent application instead of being controlled by `emqx_machine`. ```sh ͳ rg start_boot _build/emqx-enterprise/rel/emqx/releases/5.7.0-g4e6be8a6/start.script | rg emqx_s3 {apply,{application,start_boot,[emqx_s3,permanent]}}, ``` --- apps/emqx_machine/priv/reboot_lists.eterm | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/emqx_machine/priv/reboot_lists.eterm b/apps/emqx_machine/priv/reboot_lists.eterm index c0ab94d6e..226b8b017 100644 --- a/apps/emqx_machine/priv/reboot_lists.eterm +++ b/apps/emqx_machine/priv/reboot_lists.eterm @@ -117,6 +117,7 @@ emqx_bridge_oracle, emqx_bridge_rabbitmq, emqx_bridge_azure_event_hub, + emqx_s3, emqx_bridge_s3, emqx_schema_registry, emqx_eviction_agent,