Loading csp-lmc-common/csp_lmc_common/CspSubarray.py +16 −1 Original line number Diff line number Diff line Loading @@ -1947,7 +1947,22 @@ class CspSubarray(SKASubarray): :return: None """ try: self._scan_id = int(argin[0]) except ValueError as val_err: self.logging.error("Invalid argument:{}".format(str(var_err))) tango.Except.throw_exception("Command failed", str(val_err), "Scan execution", tango.ErrSeverity.ERR) except Exception as err: self.logging.error("Invalid argument:{}".format(str(err))) tango.Except.throw_exception("Command failed", str(err), "Scan execution", tango.ErrSeverity.ERR) # invoke the constructor for the command thread self.logger.info("Received Scan command with id:{}".format(self._scan_id)) for device in self._sc_subarray_assigned_fqdn: Loading Loading
csp-lmc-common/csp_lmc_common/CspSubarray.py +16 −1 Original line number Diff line number Diff line Loading @@ -1947,7 +1947,22 @@ class CspSubarray(SKASubarray): :return: None """ try: self._scan_id = int(argin[0]) except ValueError as val_err: self.logging.error("Invalid argument:{}".format(str(var_err))) tango.Except.throw_exception("Command failed", str(val_err), "Scan execution", tango.ErrSeverity.ERR) except Exception as err: self.logging.error("Invalid argument:{}".format(str(err))) tango.Except.throw_exception("Command failed", str(err), "Scan execution", tango.ErrSeverity.ERR) # invoke the constructor for the command thread self.logger.info("Received Scan command with id:{}".format(self._scan_id)) for device in self._sc_subarray_assigned_fqdn: Loading