Skip to content
Snippets Groups Projects
Unverified Commit b9dc83f4 authored by SKAJohanVenter's avatar SKAJohanVenter
Browse files

SAR-276 Added archive events

parent b3cc2486
No related branches found
No related tags found
No related merge requests found
...@@ -435,10 +435,15 @@ class SKABaseDevice(Device): ...@@ -435,10 +435,15 @@ class SKABaseDevice(Device):
# Long running command attributes # Long running command attributes
device.set_change_event("longRunningCommandsInQueue", True, True) device.set_change_event("longRunningCommandsInQueue", True, True)
device.set_archive_event("longRunningCommandsInQueue", True, True)
device.set_change_event("longRunningCommandIDsInQueue", True, True) device.set_change_event("longRunningCommandIDsInQueue", True, True)
device.set_archive_event("longRunningCommandIDsInQueue", True, True)
device.set_change_event("longRunningCommandStatus", True, True) device.set_change_event("longRunningCommandStatus", True, True)
device.set_archive_event("longRunningCommandStatus", True, True)
device.set_change_event("longRunningCommandProgress", True, True) device.set_change_event("longRunningCommandProgress", True, True)
device.set_archive_event("longRunningCommandProgress", True, True)
device.set_change_event("longRunningCommandResult", True, True) device.set_change_event("longRunningCommandResult", True, True)
device.set_archive_event("longRunningCommandResult", True, True)
device._health_state = HealthState.OK device._health_state = HealthState.OK
device._control_mode = ControlMode.REMOTE device._control_mode = ControlMode.REMOTE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment