-
Notifications
You must be signed in to change notification settings - Fork 385
fix: make allErrs complete in validateServiceClassSpec #2749
fix: make allErrs complete in validateServiceClassSpec #2749
Conversation
Hi @beautytiger. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
@@ -142,7 +142,7 @@ func validateServiceClassSpec(spec *sc.ServiceClassSpec, fldPath *field.Path, cr | |||
commonErrs := validateCommonServiceClassSpec(&spec.CommonServiceClassSpec, fldPath, create) | |||
|
|||
if len(commonErrs) != 0 { | |||
allErrs = append(commonErrs) | |||
allErrs = append(allErrs, commonErrs...) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice catch, it's been here for almost 2 years :D
@beautytiger: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
The e2e is not passing because there is a problem with Ginkgo and go 1.13: onsi/ginkgo#602 In general when running test with go 1.13 you cannot call We didn't have any problem with that previously because we executed our tests with go 1.12 but just 19ago the both form test infra updated our image for running e2e tests: https://github.com/kubernetes/test-infra/blame/e36eb04fdc6565d695a0086906ac5c92df7fb10b/config/jobs/kubernetes-sigs/service-catalog/service-catalog-presubmits.yaml#L49 I will revert that change ASAP because the ginkgo is currently not compatible with go 1.13 |
the e2e test failing because of problem described here: #2749 (comment) this does not block the merging because provided fix is definitely valid. /lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: beautytiger, mszostok The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This PR is a
What this PR does / why we need it:
Which issue(s) this PR fixes
Fixes #
Please leave this checklist in the PR comment so that maintainers can ensure a good PR.
Merge Checklist:
breaking the chart release and existing clients who provide a
flag that will get an error when they try to update