Skip to content

Commit

Permalink
increase timeout for network
Browse files Browse the repository at this point in the history
  • Loading branch information
mahesh-hpe committed Nov 4, 2024
1 parent c965c21 commit 7cbfe32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/cmp/resource_network.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ func (r *resNetwork) Create(ctx context.Context, d *utils.Data, meta interface{}
}
errCount := 0
cRetry := utils.CustomRetry{
Timeout: time.Minute * 10,
Timeout: time.Minute * 15,
RetryDelay: time.Second * 10,
InitialDelay: time.Second * 10,
InitialDelay: time.Second * 20,
Cond: func(response interface{}, err error) (bool, error) {
if err != nil {
errCount++
Expand Down

0 comments on commit 7cbfe32

Please sign in to comment.