Skip to content

Commit

Permalink
fix: breaking orders of retry statuscodes (#32)
Browse files Browse the repository at this point in the history
Signed-off-by: bitliu <bitliu@tencent.com>
  • Loading branch information
Xunzhuo committed Nov 7, 2022
1 parent 03f31b8 commit 9a69a03
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ingress/kube/annotations/retry.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import (
"github.com/gogo/protobuf/types"

networking "istio.io/api/networking/v1alpha3"
"istio.io/istio/pilot/pkg/util/sets"
)

const (
Expand Down Expand Up @@ -71,7 +70,8 @@ func (r retry) Parse(annotations Annotations, config *Ingress, _ *GlobalContext)
}

if retryOn, err := annotations.ParseStringASAP(retryOn); err == nil {
conditions := toSet(splitBySeparator(retryOn, ","))
extraConfigs := splitBySeparator(retryOn, ",")
conditions := toSet(extraConfigs)
if len(conditions) > 0 {
if conditions.Contains("off") {
retryConfig.retryCount = 0
Expand All @@ -88,7 +88,7 @@ func (r retry) Parse(annotations Annotations, config *Ingress, _ *GlobalContext)
stringBuilder.WriteString("non_idempotent,")
}
// Append the status codes.
statusCodes := convertStatusCodes(conditions)
statusCodes := convertStatusCodes(extraConfigs)
if len(statusCodes) > 0 {
stringBuilder.WriteString(retryStatusCode + ",")
for _, code := range statusCodes {
Expand Down Expand Up @@ -123,11 +123,11 @@ func needRetryConfig(annotations Annotations) bool {
annotations.HasASAP(retryOn)
}

func convertStatusCodes(set sets.Set) []string {
func convertStatusCodes(statusCodes []string) []string {
var result []string
for condition := range set {
if strings.HasPrefix(condition, "http_") {
result = append(result, strings.TrimPrefix(condition, "http_"))
for _, statusCode := range statusCodes {
if strings.HasPrefix(statusCode, "http_") {
result = append(result, strings.TrimPrefix(statusCode, "http_"))
}
}
return result
Expand Down
10 changes: 10 additions & 0 deletions ingress/kube/annotations/retry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,16 @@ func TestRetryParse(t *testing.T) {
retryOn: "5xx,retriable-status-codes,503,502,404",
},
},
{
input: map[string]string{
buildNginxAnnotationKey(retryOn): "timeout,http_505,http_503,http_502,http_404,http_403",
},
expect: &RetryConfig{
retryCount: 3,
perRetryTimeout: &types.Duration{},
retryOn: "5xx,retriable-status-codes,505,503,502,404,403",
},
},
}

for _, inputCase := range inputCases {
Expand Down

0 comments on commit 9a69a03

Please sign in to comment.