Cleanup: Restore 10 minute default value for background process (#110355)

This commit is contained in:
Ezequiel Victorero 2025-08-29 14:56:45 -03:00 committed by GitHub
parent 262c267e59
commit d63e1ce04d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ func (j cleanUpJob) String() string {
func (srv *CleanUpService) Run(ctx context.Context) error {
srv.cleanUpTmpFiles(ctx)
ticker := time.NewTicker(time.Minute * 1)
ticker := time.NewTicker(time.Minute * 10)
for {
select {
case <-ticker.C: