Skip to content
Snippets Groups Projects
Commit 2b9fcd5a authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Task #9192: bug fix: apply sane defaults for start/end time of pipelines when unspecified

parent 02b14cf3
No related branches found
No related tags found
No related merge requests found
...@@ -127,8 +127,7 @@ class ResourceAssigner(): ...@@ -127,8 +127,7 @@ class ResourceAssigner():
startTime = datetime.strptime(mainParset.getString('Observation.startTime'), '%Y-%m-%d %H:%M:%S') startTime = datetime.strptime(mainParset.getString('Observation.startTime'), '%Y-%m-%d %H:%M:%S')
endTime = datetime.strptime(mainParset.getString('Observation.stopTime'), '%Y-%m-%d %H:%M:%S') endTime = datetime.strptime(mainParset.getString('Observation.stopTime'), '%Y-%m-%d %H:%M:%S')
except ValueError: except ValueError:
logger.warning('cannot parse for start/end time from specification for otdb_id=%s. skipping specification.', (otdb_id, )) logger.warning('cannot parse for start/end time from specification for otdb_id=%s. searching for sane defaults...', (otdb_id, ))
return
maxPredecessorEndTime = self.getMaxPredecessorEndTime(specification_tree) maxPredecessorEndTime = self.getMaxPredecessorEndTime(specification_tree)
if maxPredecessorEndTime: if maxPredecessorEndTime:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment