mirror of https://github.com/grafana/grafana.git
Cleanup: Restore 10 minute default value for background process (#110355)
This commit is contained in:
parent
262c267e59
commit
d63e1ce04d
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue