-
Notifications
You must be signed in to change notification settings - Fork 12
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
Lint the results from role generation #1513
Conversation
09cde98
to
0251a4c
Compare
0251a4c
to
e3a0106
Compare
@@ -507,7 +512,70 @@ def __init__(self, config: WCA_PIPELINE_CONFIGURATION): | |||
super().__init__(config=config) | |||
|
|||
def invoke(self, params: RoleGenerationParameters) -> RoleGenerationResponse: | |||
raise NotImplementedError | |||
request = params.request |
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.
I believe this should only be implemented in pipelines_saas.py
since we don't want to provide this feature yet with the onPrem offert. @manstis WDYT?
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.
@goneri @mabashian Yes, if this is only available for SaaS then that would be a better place for it. However please put a comment saying it should be moved back to the base WCA class when it becomes available for on-prem 😁 (otherwise we'll either have to remember or risk the duplication).
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.
(I was going to review this PR tomorrow)
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.
3b9e74b
to
14c441f
Compare
|
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.
LGTM 👍
Jira Issue: https://issues.redhat.com/browse/AAP-37200
Description
This PR does two things:
Testing
Unit test coverage added for new scenarios
Scenarios tested
None beyond the automated tests
Production deployment