Skip to content

Commit

Permalink
bump broker waitforready timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
bparees committed Jul 24, 2017
1 parent 49df2d6 commit 306dafa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/template/servicebroker/servicebroker.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func NewBroker(privrestconfig restclient.Config, privkc kclientset.Interface, in
func (b *Broker) WaitForReady() error {
// delay up to 10 seconds if not ready (unlikely), before returning a
// "try again" response.
timer := time.NewTimer(10 * time.Second)
timer := time.NewTimer(30 * time.Second)
defer timer.Stop()

select {
Expand Down

0 comments on commit 306dafa

Please sign in to comment.