From 5f9a3f8f2711db392eadf164a6608a52cc2e413d Mon Sep 17 00:00:00 2001 From: erickgonzalez Date: Wed, 4 Sep 2024 11:47:18 -0600 Subject: [PATCH] #29667 include in 23.10.24 LTS --- dotCMS/hotfix_tracking.md | 3 ++- .../java/com/dotmarketing/quartz/job/BinaryCleanupJob.java | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dotCMS/hotfix_tracking.md b/dotCMS/hotfix_tracking.md index 6a5837d6aa67..aa7911843cd2 100644 --- a/dotCMS/hotfix_tracking.md +++ b/dotCMS/hotfix_tracking.md @@ -145,4 +145,5 @@ This maintenance release includes the following code fixes: 138. https://github.com/dotCMS/core/issues/29222 : Telemetry: not getting data after last release of the plugin #29222 139. https://github.com/dotCMS/core/issues/29254 : Add a new main tag for LTSs #29254 140. https://github.com/dotCMS/core/issues/28857 : dotAsset is Breaking FileViewStrategy #28857 -141. https://github.com/dotCMS/core/issues/29259 : Page API: Image field content gone when request page with depth #29259 \ No newline at end of file +141. https://github.com/dotCMS/core/issues/29259 : Page API: Image field content gone when request page with depth #29259 +142. https://github.com/dotCMS/core/issues/29667 : Update CLEANUP_BUNDLES_OLDER_THAN_DAYS default value to 4 #29667 \ No newline at end of file diff --git a/dotCMS/src/main/java/com/dotmarketing/quartz/job/BinaryCleanupJob.java b/dotCMS/src/main/java/com/dotmarketing/quartz/job/BinaryCleanupJob.java index 3732b9195cd6..107264bcfe6e 100644 --- a/dotCMS/src/main/java/com/dotmarketing/quartz/job/BinaryCleanupJob.java +++ b/dotCMS/src/main/java/com/dotmarketing/quartz/job/BinaryCleanupJob.java @@ -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; }