Skip to content
Snippets Groups Projects
Commit abfea475 authored by Auke Klazema's avatar Auke Klazema
Browse files

SW-609: Fixed a test with code changes on spec error don't update times

parent 7c7cdb6b
No related branches found
No related tags found
No related merge requests found
......@@ -642,7 +642,7 @@ class Specification:
self.logger.exception(e)
self.logger.error("Problem parsing specification for otdb_id=%s", otdb_id)
self.set_status("error") #Not catching an exception here
return None
return []
self.logger.info('Reading values from OTDB for task %i was successful' % otdb_id)
self.logger.info('type: %s subtype: %s starttime: %s endtime: %s duration: %s mom_id: %s cluster: %s predecessors: %s',
self.type, self.subtype, self.starttime, self.endtime, self.duration, self.mom_id, self.cluster, predecessor_ids)
......
......@@ -147,6 +147,10 @@ class TaskPrescheduler(OTDBBusListener):
spec.set_status(status)
spec.read_from_OTDB_with_predecessors(treeId, "otdb", {}) #Now checks predecessors, which theoretically could cause race contitions
spec.read_from_mom()
if spec.status == "error":
return
spec.update_start_end_times()
spec.insert_into_radb()
# if spec.validate()?
......
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