From 64c42a24f5f200be071234d2f110ba8e26e5e2a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julio=20Cesar=20Laura=20Avenda=C3=B1o?= Date: Mon, 27 Jul 2020 19:54:47 +0000 Subject: [PATCH] Renaming connection 'report' to 'rp' --- workflow/engine/config/databases.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/workflow/engine/config/databases.php b/workflow/engine/config/databases.php index 0833eec0f..9cd4a69be 100644 --- a/workflow/engine/config/databases.php +++ b/workflow/engine/config/databases.php @@ -85,15 +85,15 @@ if (defined('PATH_DB') && !empty(config("system.workspace"))) { config(['database.connections.rbac.port' => $dbRbacHost[1]]); } - // "report" connection + // "rp" connection $dbReportHost = explode(':', DB_REPORT_HOST); - config(['database.connections.report.driver' => DB_ADAPTER]); - config(['database.connections.report.host' => $dbReportHost[0]]); - config(['database.connections.report.database' => DB_REPORT_NAME]); - config(['database.connections.report.username' => DB_REPORT_USER]); - config(['database.connections.report.password' => DB_REPORT_PASS]); + config(['database.connections.rp.driver' => DB_ADAPTER]); + config(['database.connections.rp.host' => $dbReportHost[0]]); + config(['database.connections.rp.database' => DB_REPORT_NAME]); + config(['database.connections.rp.username' => DB_REPORT_USER]); + config(['database.connections.rp.password' => DB_REPORT_PASS]); if (count($dbReportHost) > 1) { - config(['database.connections.report.port' => $dbReportHost[1]]); + config(['database.connections.rp.port' => $dbReportHost[1]]); } }