From aa4b9e93824384bd4217fe611e5d4ab14881406f Mon Sep 17 00:00:00 2001 From: PauI Ostrovckij Date: Fri, 3 Oct 2025 15:23:57 +0300 Subject: [PATCH] [bug] Merge runtime config in full config; Fix bug 77258 --- Common/sources/operationContext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/sources/operationContext.js b/Common/sources/operationContext.js index f8d59b43..a0d31192 100644 --- a/Common/sources/operationContext.js +++ b/Common/sources/operationContext.js @@ -101,7 +101,7 @@ Context.prototype.initFromPubSub = function (data) { Context.prototype.initTenantCache = async function () { const runtimeConfig = await runtimeConfigManager.getConfig(this); const tenantConfig = await tenantManager.getTenantConfig(this); - this.config = utils.deepMergeObjects({}, runtimeConfig, tenantConfig); + this.config = utils.deepMergeObjects(config.util.toObject(), runtimeConfig, tenantConfig); //todo license and secret };