-
Notifications
You must be signed in to change notification settings - Fork 5
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
* Allow editing/saving/cloning queue parameters #148
Conversation
pyworkflow/gui/form.py
Outdated
@@ -2146,16 +2149,18 @@ def save(self, e=None): | |||
|
|||
def schedule(self): | |||
if self.protocol.useQueue(): | |||
if not self._editQueueParams(): | |||
return | |||
if not self.protocol.getQueueParams()[0]: |
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'd have a "queueReady()"? method to wrap queue logic?:
if self.protocol.useQueue():
if not self.protocol.getQueueParams()[0]:
if not self._editQueueParams():
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.
Yes!!! I'll create the method!!
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
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'm ok with this.
Allow editing/saving/cloning queue parameters
Closes #147