From 79e663e5bfdea75829641bc7ece35e0819442061 Mon Sep 17 00:00:00 2001
From: Jorrit Schaap <schaap@astron.nl>
Date: Thu, 25 Feb 2021 16:56:10 +0100
Subject: [PATCH] TMSS-528: minor fixes

---
 SAS/TMSS/backend/src/tmss/tmssapp/adapters/parset.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/SAS/TMSS/backend/src/tmss/tmssapp/adapters/parset.py b/SAS/TMSS/backend/src/tmss/tmssapp/adapters/parset.py
index 921c46edce6..c0f8924500d 100644
--- a/SAS/TMSS/backend/src/tmss/tmssapp/adapters/parset.py
+++ b/SAS/TMSS/backend/src/tmss/tmssapp/adapters/parset.py
@@ -51,7 +51,7 @@ def _stokes_settings_parset_subkeys(stokes_spec: dict) -> dict:
     parset['timeIntegrationFactor'] = stokes_spec['time_integration_factor']
     parset['subbandsPerFile'] = stokes_spec['subbands_per_file']
 
-    quantisation = parset['quantize'] = stokes_spec['quantisation_enabled']
+    quantisation = parset['quantize'] = stokes_spec.get('quantisation',{}).get('enabled', False)
     if quantisation:
         parset['quantizeBits'] = stokes_spec['quantisation']['bits']
         parset['quantizeScaleMax'] = stokes_spec['quantisation']['scale_max']
@@ -183,11 +183,11 @@ def _convert_beamformer_settings_to_parset_dict(subtask: models.Subtask, spec: d
             if cobalt_version >= 2:
                 pipeline_parset['Beam[%s].subbandList' % sap_idx] = sap['subbands']
 
-        if cobalt_version == 1:
-            # This won't overwrite anything, since COBALT1 supports only one beamformer pipeline
-            parset["Cobalt.BeamFormer.stationList"] = pipeline['stations']
-        else:
-            pipeline_parset['Beam[%s].stationList' % sap_idx] = pipeline['stations']
+            if cobalt_version == 1:
+                # This won't overwrite anything, since COBALT1 supports only one beamformer pipeline
+                parset["Cobalt.BeamFormer.stationList"] = pipeline['stations']
+            else:
+                pipeline_parset['Beam[%s].stationList' % sap_idx] = pipeline['stations']
 
         beamformer_pipeline_parsets.append(pipeline_parset)
 
-- 
GitLab