Skip to content

Commit

Permalink
fix: correct days for removing delta files
Browse files Browse the repository at this point in the history
  • Loading branch information
htuzel committed Dec 10, 2024
1 parent 18130f4 commit daf3eaa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var ProductMgr = require('dw/catalog/ProductMgr');
var Site = require('dw/system/Site');
var File = require('dw/io/File'); // eslint-disable-line no-redeclare
var logger;
const MAX_FILE_AGE_DAYS = 0; // Constant for file cleanup - files older than 60 days will be deleted
const MAX_FILE_AGE_DAYS = 60; // Constant for file cleanup - files older than 60 days will be deleted

// job step parameters
var paramConsumer, paramDeltaExportJobName, paramAttributeListOverride, paramIndexingMethod, paramFailureThresholdPercentage, paramLocalesForIndexing;
Expand Down

0 comments on commit daf3eaa

Please sign in to comment.