FIX: Enforce proper max for clean_orphan_uploads_grace_period_hours (#25235)

* FIX: Enforce proper max for clean_orphan_uploads_grace_period_hours

* Cast

* Set clean_orphan_uploads_grace_period_hours to max allowed
This commit is contained in:
Natalie Tay
2024-01-15 10:32:07 +08:00
committed by GitHub
parent 830ca2877d
commit 9bc78625af
3 changed files with 17 additions and 2 deletions

View File

@ -84,7 +84,7 @@ class ImportScripts::Base
clean_up_inactive_users_after_days: 0,
clean_up_unused_staged_users_after_days: 0,
clean_up_uploads: false,
clean_orphan_uploads_grace_period_hours: 1800,
clean_orphan_uploads_grace_period_hours: 168,
}
end