Skip to content

Commit

Permalink
Merge pull request #1571 from fluxcd/istio-retries
Browse files Browse the repository at this point in the history
istio: make retry attempts a mandatory field
  • Loading branch information
aryan9600 authored Dec 18, 2023
2 parents 9f5ad2e + 3a887bd commit a2d1473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/apis/istio/v1alpha3/virtual_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ type HTTPRetry struct {
// REQUIRED. Number of retries for a given request. The interval
// between retries will be determined automatically (25ms+). Actual
// number of retries attempted depends on the httpReqTimeout.
Attempts int `json:"attempts,omitempty"`
Attempts int `json:"attempts"`

// Timeout per retry attempt for a given request. format: 1h/1m/1s/1ms. MUST BE >=1ms.
PerTryTimeout string `json:"perTryTimeout,omitempty"`
Expand Down

0 comments on commit a2d1473

Please sign in to comment.