From d63e1ce04d50700d35bb7e88e88ccec2737fbc87 Mon Sep 17 00:00:00 2001 From: Ezequiel Victorero Date: Fri, 29 Aug 2025 14:56:45 -0300 Subject: [PATCH] Cleanup: Restore 10 minute default value for background process (#110355) --- pkg/services/cleanup/cleanup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/services/cleanup/cleanup.go b/pkg/services/cleanup/cleanup.go index 3f5890a29f6..7730ee1dcf4 100644 --- a/pkg/services/cleanup/cleanup.go +++ b/pkg/services/cleanup/cleanup.go @@ -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: