-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop EEJobInterface #1088
Drop EEJobInterface #1088
Conversation
f414569
to
0cdc90a
Compare
/test openstack-operator-build-deploy-kuttl |
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/95446dc101a44acf8d764214bc3f8040 ✔️ openstack-k8s-operators-content-provider SUCCESS in 1h 58m 06s |
It's not used anywhere. If we've multiple structs implementing the same methods, we can have an interface and call the methods on the interface. Also adds call to addEnvFrom(). Signed-off-by: rabi <[email protected]>
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/36ffaf3ff7874892a96f0e9d9f733b7b ✔️ openstack-k8s-operators-content-provider SUCCESS in 1h 50m 10s |
recheck |
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/7c4fa79a1659443aa975969ff5757389 ✔️ openstack-k8s-operators-content-provider SUCCESS in 1h 49m 51s |
recheck RETRY_LIMIT |
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/76fe7eeaa6b4471bbb7858ee4e660d27 ✔️ openstack-k8s-operators-content-provider SUCCESS in 1h 51m 48s |
recheck Openshift marketplace failure |
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/6f87dda765d445a1a566e9981ca91d10 ✔️ openstack-k8s-operators-content-provider SUCCESS in 1h 47m 43s |
Tempest test: |
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.
Yeah, I was thinking about using it for some tests, but I never ended up implementing it. Should have dropped it from my original PR, my bad.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: bshephar, jpodivin, rabi 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 |
Unless multiple structs implement the same interface, you don't need them. Also, it was hiding the fact that addEnvFrom() is not called at all and linter was not complaining. |
recheck |
e054da2
into
openstack-k8s-operators:main
It's not used anywhere. If we've multiple structs implementing the same methods, we can have an interface and call the methods on the interface.