Commit d927ae3d authored by Elisabetta Giani's avatar Elisabetta Giani
Browse files

CT-69: Handle the scan_id value sent as argument of the Scan command.

parent 8756b778
Loading
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -1947,10 +1947,9 @@ class CspSubarray(SKASubarray):

        :return: None
        """
        self._scan_id = int(argin)
        self.logger.info("Received scan {}".format(self._scan_id))
        self._scan_id = int(argin[0])
        # invoke the constructor for the command thread
        self.logger.info("Received Scan command!!")
        self.logger.info("Received Scan command with id:{}".format(self._scan_id))
        for device in self._sc_subarray_assigned_fqdn:
            try:
                proxy = self._sc_subarray_proxies[device]