From f5d4654d7e04499524249766fec15822e590519c Mon Sep 17 00:00:00 2001 From: achettyiitr Date: Thu, 17 Oct 2024 09:32:20 +0530 Subject: [PATCH] chore: populate source destination info --- src/warehouse/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/warehouse/index.js b/src/warehouse/index.js index 4afa8f72c2..3491a257da 100644 --- a/src/warehouse/index.js +++ b/src/warehouse/index.js @@ -30,7 +30,7 @@ const whExtractEventTableColumnMappingRules = require('./config/WHExtractEventTa const maxColumnsInEvent = parseInt(process.env.WH_MAX_COLUMNS_IN_EVENT || '200', 10); const WH_POPULATE_SRC_DEST_INFO_IN_CONTEXT = - process.env.WH_POPULATE_SRC_DEST_INFO_IN_CONTEXT || true; + process.env.WH_POPULATE_SRC_DEST_INFO_IN_CONTEXT !== 'false'; const getDataType = (key, val, options, jsonKey = false) => { const type = typeof val;