Skip to content
Snippets Groups Projects
Commit cb6fd4d4 authored by Jan David Mol's avatar Jan David Mol
Browse files

L2SS-544: Trigger on DevState.FAULT directly, instead of parsing state string.

parent e15625f7
No related branches found
No related tags found
1 merge request!199L2SS-544: Improve LibConfiguration parsing, and return a dict instead of list...
......@@ -2,7 +2,7 @@
import logging
from tango import DeviceProxy, AttributeProxy
from tango import DeviceProxy, AttributeProxy, DevState
import time
import json, os
......@@ -68,11 +68,10 @@ class Archiver():
self.cm_name = cm_name
self.cm = DeviceProxy(cm_name)
try:
cm_state = self.cm.state() # ping the device server
if 'FAULT' in str(cm_state):
raise Exception("Configuration Manager is in FAULT state")
if self.cm.state() == DevState.FAULT:
raise Exception(f"Configuration Manager {cm_name} is in FAULT state")
except Exception as e:
raise Exception("Connection failed with Configuration Manager device") from e
raise Exception(f"Connection failed with Configuration Manager {cm_name}") from e
self.es_list = [es_name for es_name in self.get_subscribers(from_db=False)] or []
self.cm.write_attribute('Context',context) # Set default Context Archiving for all the subscribers
self.selector = Selector() if selector_filename is None else Selector(selector_filename) # Create selector for customized strategies
......@@ -186,13 +185,12 @@ class Archiver():
es_name = last_es_name[:-2]+'0'+str(last_es_idx+1)
try:
es = DeviceProxy(es_name)
es_state = es.state() # ping the device server
if 'FAULT' in str(es_state):
raise Exception(f"{es_name} is in FAULT state")
if es.state() == DevState.FAULT:
raise Exception(f"Event Subscriber {es_name} is in FAULT state")
self.cm.ArchiverAdd(device_name_url(es_name))
except Exception as e:
if 'already_present' in str(e):
logger.warning(f"Subscriber {es_name} already present in Configuration Manager")
logger.warning(f"Event Subscriber {es_name} already present in Configuration Manager")
else:
raise Exception from e
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment