From 27bb4ee68b46092ddd444fea99b903841a79a3d1 Mon Sep 17 00:00:00 2001 From: Yonas Habteab Date: Tue, 24 Oct 2023 16:15:38 +0200 Subject: [PATCH] Database: Always load config from disk --- library/Reporting/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Reporting/Database.php b/library/Reporting/Database.php index 2e9d551..9a736e8 100644 --- a/library/Reporting/Database.php +++ b/library/Reporting/Database.php @@ -16,7 +16,7 @@ protected function getDb(): RetryConnection { $config = new Sql\Config( ResourceFactory::getResourceConfig( - Config::module('reporting')->get('backend', 'resource', 'reporting') + Config::module('reporting', 'config', true)->get('backend', 'resource', 'reporting') ) );