Bump the wait time for OS write ops

This commit is contained in:
Ole Markus With 2020-07-12 14:47:20 +02:00
parent fd7490e3e2
commit e32e03b07e
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ var readBackoff = wait.Backoff{
// writeBackoff is the backoff strategy for openstack write retries.
var writeBackoff = wait.Backoff{
Duration: time.Second,
Factor: 1.5,
Factor: 2,
Jitter: 0.1,
Steps: 5,
}