Skip to content

Commit

Permalink
Removed annoying notification each time a PE cell job finishes
Browse files Browse the repository at this point in the history
  • Loading branch information
rexissimus committed Aug 27, 2015
1 parent c7782d3 commit ab73a63
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions vistrails/gui/job_monitor.py
Expand Up @@ -307,10 +307,13 @@ def update_job(self, job, force=True):
int(workflow.version)
except ValueError:
if workflow.version.startswith("Parameter Exploration"):
QtGui.QMessageBox.information(self, "Job Ready",
'Pending Jobs in "%s" have finished, '
'execute it again to get results' % workflow_item.text(0),
QtGui.QMessageBox.Ok)
# this is too annoying
#QtGui.QMessageBox.information(self, "Job Ready",
# 'Pending Jobs in "%s" have finished, '
# 'execute it again to get results' % workflow_item.text(0),
# QtGui.QMessageBox.Ok)
# TODO: Only notify user when all cells have finished
pass
elif workflow.version.startswith("Mashup"):
QtGui.QMessageBox.information(self, "Job Ready",
'Pending Jobs in "%s" have finished, '
Expand Down

0 comments on commit ab73a63

Please sign in to comment.