From c3ce68108ef28295e74ccc52c22a0987b658fb23 Mon Sep 17 00:00:00 2001 From: elegantmoose Date: Fri, 26 Apr 2024 11:38:21 -0400 Subject: [PATCH] so magma will show enabled on health check --- app/service/app_svc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/service/app_svc.py b/app/service/app_svc.py index 7f280a8f0..d888035bf 100644 --- a/app/service/app_svc.py +++ b/app/service/app_svc.py @@ -111,7 +111,7 @@ async def load(p): await self.get_service('data_svc').store(plugin) self._loaded_plugins.append(plugin) - if plugin.name in self.get_config('plugins'): + if plugin.name in self.get_config('plugins') or plugin.name == 'magma': await plugin.enable(self.get_services()) self.log.info('Enabled plugin: %s' % plugin.name)