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

Task #8887: adaptations to new otdb services

parent c50eeb4b
No related branches found
No related tags found
No related merge requests found
......@@ -211,6 +211,7 @@ class RATaskSpecified(OTDBBusListener):
# Request the parset
main_obsID = treeId
main_parset,_ = self.parset_rpc( OtdbID=main_obsID )
main_parset = main_parset['TaskSpecification']
logger.info("main_parset [%s]: %s" % (main_obsID, main_parset))
# Construct a dict of all the parsets we retrieved
......@@ -236,6 +237,7 @@ class RATaskSpecified(OTDBBusListener):
# Request predecessor parset
parsets[obsID],_ = self.parset_rpc( OtdbID=obsID )
parsets[obsID] = parsets[obsID]['TaskSpecification']
logger.info("predecessor parset [%s]: %s" % (obsID, parsets[obsID]))
# Add the list of predecessors
......
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