We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b967c27 commit 03a6b77Copy full SHA for 03a6b77
meshroom/core/node.py
@@ -806,9 +806,8 @@ def clearData(self):
806
@Slot(result=str)
807
def getStartDateTime(self):
808
""" Return the date (str) of the first running chunk """
809
- if not self.isAlreadySubmittedOrFinished() or len(self._chunks) == 0:
810
- return ""
811
- dateTime = [chunk._status.startDateTime for chunk in self._chunks if chunk._status.startDateTime != ""]
+ dateTime = [chunk._status.startDateTime for chunk in self._chunks if chunk._status.status
+ not in (Status.NONE, Status.SUBMITTED) and chunk._status.startDateTime != ""]
812
return min(dateTime) if len(dateTime) != 0 else ""
813
814
def isAlreadySubmitted(self):
0 commit comments