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

L2SS-544: Parse exceptions more directly

parent feacaef7
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 @@ ...@@ -2,7 +2,7 @@
import logging import logging
from tango import DeviceProxy, AttributeProxy, DevState from tango import DeviceProxy, AttributeProxy, DevState, DevFailed
import time import time
import json, os import json, os
...@@ -250,11 +250,11 @@ class Archiver(): ...@@ -250,11 +250,11 @@ class Archiver():
self.cm.AttributeStop(attribute_name) self.cm.AttributeStop(attribute_name)
self.cm.AttributeRemove(attribute_name) self.cm.AttributeRemove(attribute_name)
logger.warning(f"Attribute {attribute_name} removed!") logger.warning(f"Attribute {attribute_name} removed!")
except Exception as e: except DevFailed as e:
if 'attribute not found' not in str(e).lower(): if e.args[0].reason == 'Attribute not found':
raise Exception from e logger.warning(f"Attribute {attribute_name} not found!")
else: else:
logger.warning(f"Attribute {attribute_name} not found in archiving list!") raise
def remove_attributes_by_device(self,device_name:str,exclude:list=[]): def remove_attributes_by_device(self,device_name:str,exclude:list=[]):
""" """
...@@ -297,11 +297,11 @@ class Archiver(): ...@@ -297,11 +297,11 @@ class Archiver():
attribute_name = attribute_name_from_url(attribute_name) attribute_name = attribute_name_from_url(attribute_name)
try: try:
self.cm.AttributeStart(attribute_name) self.cm.AttributeStart(attribute_name)
except Exception as e: except DevFailed as e:
if 'attribute not found' not in str(e).lower(): if e.args[0].reason == "Attribute not found":
raise Exception from e
else:
logger.warning(f"Attribute {attribute_name} not found!") logger.warning(f"Attribute {attribute_name} not found!")
else:
raise
def stop_archiving_attribute(self, attribute_name:str): def stop_archiving_attribute(self, attribute_name:str):
""" """
...@@ -311,11 +311,11 @@ class Archiver(): ...@@ -311,11 +311,11 @@ class Archiver():
attribute_name = attribute_name_from_url(attribute_name) attribute_name = attribute_name_from_url(attribute_name)
try: try:
self.cm.AttributeStop(attribute_name) self.cm.AttributeStop(attribute_name)
except Exception as e: except DevFailed as e:
if 'attribute not found' not in str(e).lower(): if e.args[0].reason == "Attribute not found":
raise Exception from e
else:
logger.warning(f"Attribute {attribute_name} not found!") logger.warning(f"Attribute {attribute_name} not found!")
else:
raise
def is_attribute_archived(self,attribute_name:str): def is_attribute_archived(self,attribute_name:str):
""" """
......
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