Skip to content
Snippets Groups Projects
Commit b8c3c340 authored by Adriaan Renting's avatar Adriaan Renting
Browse files

Task #9192: Fix for phaseshift pipelines

parent 7956f343
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,8 @@ class ResourceEstimatorHandler(MessageHandlerInterface):
if not 'im' in estimate.values()[0]['storage']['output_files'] and 'uv' in estimate.values()[0]['storage']['output_files']: # Not a calibrator pipeline
logger.info('found %s as the target of pipeline %s' % (id, otdb_id))
input_files['uv'] = estimate.values()[0]['storage']['output_files']['uv']
input_files['saps'] = estimate.values()[0]['storage']['output_files']['saps']
if 'saps' in estimate.values()[0]['storage']['output_files']:
input_files['saps'] = estimate.values()[0]['storage']['output_files']['saps']
elif 'im' in estimate.values()[0]['storage']['output_files']:
input_files['im'] = estimate.values()[0]['storage']['output_files']['im']
return {str(otdb_id): self.add_id(self.calibration_pipeline.verify_and_estimate(parset, input_files), otdb_id)}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment