Skip to content

Commit

Permalink
addons: fix initial retry delay, double maximum limit
Browse files Browse the repository at this point in the history
  • Loading branch information
tstromberg committed May 4, 2020
1 parent cc32892 commit 6969200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/addons/addons.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ func enableOrDisableAddonInternal(cc *config.ClusterConfig, addon *assets.Addon,
return err
}

return retry.Expo(apply, 100*time.Microsecond, time.Minute)
return retry.Expo(apply, 250*time.Millisecond, 2*time.Minute)
}

// enableOrDisableStorageClasses enables or disables storage classes
Expand Down

0 comments on commit 6969200

Please sign in to comment.