Skip to content

Commit

Permalink
[server] Increase waittime on delete error (#3344)
Browse files Browse the repository at this point in the history
## Description

## Tests
  • Loading branch information
ua741 authored Sep 19, 2024
2 parents d02da22 + 5f873a0 commit 4ee9815
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 4ee9815

Please sign in to comment.