From 30ce7a44045b2894becc3182c3b5a22f3ffbfe50 Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Thu, 3 Feb 2022 19:30:36 +0000 Subject: [PATCH] Allow attributes to be read/written also if device is alarming. We want to be able to know its status then, after all. --- .../tangostationcontrol/clients/attribute_wrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py b/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py index e9239a834..b8e829ede 100644 --- a/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py +++ b/tangostationcontrol/tangostationcontrol/clients/attribute_wrapper.py @@ -72,7 +72,7 @@ class attribute_wrapper(attribute): if access == AttrWriteType.READ_WRITE: """ if the attribute is of READ_WRITE type, assign the write function to it""" - @only_in_states([DevState.STANDBY, DevState.ON], log=False) + @only_in_states([DevState.STANDBY, DevState.ON, DevState.ALARM], log=False) @fault_on_error() def write_func_wrapper(device, value): """ @@ -86,7 +86,7 @@ class attribute_wrapper(attribute): """ Assign the read function to the attribute""" - @only_in_states([DevState.STANDBY, DevState.ON], log=False) + @only_in_states([DevState.STANDBY, DevState.ON, DevState.ALARM], log=False) @fault_on_error() def read_func_wrapper(device): """ -- GitLab