From d730dafbbd2de30b67c35db8ca05396a98a8d2e0 Mon Sep 17 00:00:00 2001 From: Akash Chetty Date: Thu, 17 Oct 2024 12:12:42 +0530 Subject: [PATCH] fix: populate source destination info env set properly (#3806) --- 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;