Skip to content

Commit

Permalink
Increase waittime on error
Browse files Browse the repository at this point in the history
  • Loading branch information
ua741 committed Sep 19, 2024
1 parent a8c7dd5 commit 5f873a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/pkg/controller/filedata/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func (c *Controller) delete(i int) {
if err != nil {
// Sleep in proportion to the (arbitrary) index to space out the
// workers further.
time.Sleep(time.Duration(i+1) * time.Minute)
time.Sleep(time.Duration(i+5) * time.Minute)
}
}
}
Expand Down

0 comments on commit 5f873a0

Please sign in to comment.