We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abba47f commit 069a5beCopy full SHA for 069a5be
framework/components/dockercompose/chip_ingress_set/protos.go
@@ -659,11 +659,11 @@ func registerSingleProto(
659
return errors.Wrap(bodyErr, "failed to read response body")
660
}
661
662
- if resp.StatusCode >= 400 && resp.StatusCode <= 500 {
+ if resp.StatusCode >= 400 && resp.StatusCode < 500 {
663
return retry.Unrecoverable(fmt.Errorf("schema registry error (%d): %s", resp.StatusCode, string(body)))
664
665
666
- return fmt.Errorf("schema registry error (%d): %s", resp.StatusCode, body)
+ return fmt.Errorf("schema registry error (%d): %s", resp.StatusCode, string(body))
667
668
669
return nil
0 commit comments