-
Notifications
You must be signed in to change notification settings - Fork 68
add wait argument to deploy() #499
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
Conversation
| sys.exit(signal_received) | ||
|
|
||
| def deploy(self): | ||
| def deploy(self, wait=False): |
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.
We have more resources that define wait, please add wait there as well.
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 will update those resources.
| return | ||
|
|
||
| def deploy(self): | ||
| def deploy(self, wait=True): |
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.
wait should go to self.create() and not with if wait:
|
Kudos, SonarCloud Quality Gate passed!
|
| return | ||
|
|
||
| def deploy(self): | ||
| def deploy(self, wait=True): |
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.
wait should go to self.create() and not with if wait:
|
!verified |
* add wait argument to deploy() * update node_network_configuration_policy.deploy() * pass wait argument to the create call * change default value to False
add wait argument to deploy() (#499)
* add wait argument to deploy() * update node_network_configuration_policy.deploy() * pass wait argument to the create call * change default value to False
* add wait argument to deploy() * update node_network_configuration_policy.deploy() * pass wait argument to the create call * change default value to False








Short description: Added wait=False to resource.deploy() call
More details:
What this PR does / why we need it:
Which issue(s) this PR fixes:
Special notes for reviewer:
Bug: