Skip to content

Commit ab986f0

Browse files
committed
loadbalancer: adjust wait.Backoff for load balancer wait times
1 parent bddb579 commit ab986f0

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)