Skip to content

Commit

Permalink
issue-29667 : Update default value to 4 (#29773)
Browse files Browse the repository at this point in the history
CLEANUP_BACKUP_FILES_OLDER_THAN_DAYS: is set to 3
Now it is changed to 4
  • Loading branch information
Neehakethi authored Aug 28, 2024
1 parent d748b7c commit 4f4cc27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void cleanUpTmpUploadedFiles() {
* Deletes from /assets/bundles
*/
void cleanUpOldBundles() {
final int days = Config.getIntProperty(CLEANUP_BUNDLES_OLDER_THAN_DAYS, 3);
final int days = Config.getIntProperty(CLEANUP_BUNDLES_OLDER_THAN_DAYS, 4);
if (days < 1) {
return;
}
Expand Down

0 comments on commit 4f4cc27

Please sign in to comment.