Skip to content

Commit d520355

Browse files
authored
Merge pull request #853 from Daimler/cloud-loadbalancer-improve-backoff
✨ adjust loadbalancer wait.Backoff
2 parents 99d3dd3 + ab986f0 commit d520355

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/cloud/services/loadbalancer/loadbalancer.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,9 @@ func checkIfLbMemberExists(client *gophercloud.ServiceClient, poolID, name strin
428428
}
429429

430430
var backoff = wait.Backoff{
431-
Steps: 10,
432-
Duration: 30 * time.Second,
433-
Factor: 1.0,
431+
Steps: 20,
432+
Duration: time.Second,
433+
Factor: 1.25,
434434
Jitter: 0.1,
435435
}
436436

0 commit comments

Comments
 (0)