Skip to content

Commit

Permalink
Change delete timeout to 30 mins (#8366)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahreehong authored Jun 24, 2024
1 parent 793814c commit c65dc85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/dependencies/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,7 @@ func (f *Factory) WithClusterDeleter() *Factory {
f.buildSteps = append(f.buildSteps, func(ctx context.Context) error {
var opts []clustermanager.DeleterOpt
if f.config.noTimeouts {
opts = append(opts, clustermanager.WithDeleterApplyClusterTimeout(time.Hour))
opts = append(opts, clustermanager.WithDeleterApplyClusterTimeout(30*time.Minute))
}

f.dependencies.ClusterDeleter = clustermanager.NewDeleter(
Expand Down

0 comments on commit c65dc85

Please sign in to comment.