Skip to content

Commit

Permalink
fix: populate source destination info env set properly (#3806)
Browse files Browse the repository at this point in the history
  • Loading branch information
achettyiitr authored Oct 17, 2024
1 parent b33eadc commit d730daf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/warehouse/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d730daf

Please sign in to comment.