From b7d07d7a96f30b29e9611cf795b69b6e54456563 Mon Sep 17 00:00:00 2001 From: Shawn <506895667@qq.com> Date: Mon, 28 Feb 2022 10:05:41 +0800 Subject: [PATCH] fix(appup): remove the post relup scripts from emqx_dashboard.appup.src The instructions have been move into module `emqx_relup`. --- lib-ce/emqx_dashboard/src/emqx_dashboard.appup.src | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/lib-ce/emqx_dashboard/src/emqx_dashboard.appup.src b/lib-ce/emqx_dashboard/src/emqx_dashboard.appup.src index 902585ffb..270c65b5e 100644 --- a/lib-ce/emqx_dashboard/src/emqx_dashboard.appup.src +++ b/lib-ce/emqx_dashboard/src/emqx_dashboard.appup.src @@ -1,18 +1,11 @@ %% -*- mode: erlang -*- {VSN, [ {<<".*">>, - %% load all plugins - %% NOTE: this depends on the fact that emqx_dashboard is always - %% the last application gets upgraded - [ {apply, {emqx_rule_engine, load_providers, []}} - , {restart_application, emqx_dashboard} - , {apply, {emqx_plugins, load, []}} + [ {restart_application, emqx_dashboard} ]} ], [ {<<".*">>, - [ {apply, {emqx_rule_engine, load_providers, []}} - , {restart_application, emqx_dashboard} - , {apply, {emqx_plugins, load, []}} + [ {restart_application, emqx_dashboard} ]} ] -}. +}. \ No newline at end of file