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

This commit is contained in:
Ezequiel Victorero
2025-08-29 17:56:45 +00:00
committed by GitHub
parent 262c267e59
commit d63e1ce04d
+1 -1
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: