Skip to content

Commit

Permalink
#29667 include in 23.10.24 LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
erickgonzalez committed Sep 4, 2024
1 parent a2a38d9 commit 5f9a3f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dotCMS/hotfix_tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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
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 5f9a3f8

Please sign in to comment.