Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tango
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LOFAR2.0
tango
Commits
2b68c88c
Commit
2b68c88c
authored
3 years ago
by
Jan David Mol
Browse files
Options
Downloads
Patches
Plain Diff
L2SS-544
: Parse exceptions more directly
parent
feacaef7
No related branches found
No related tags found
1 merge request
!199
L2SS-544: Improve LibConfiguration parsing, and return a dict instead of list...
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tangostationcontrol/tangostationcontrol/toolkit/archiver.py
+13
-13
13 additions, 13 deletions
tangostationcontrol/tangostationcontrol/toolkit/archiver.py
with
13 additions
and
13 deletions
tangostationcontrol/tangostationcontrol/toolkit/archiver.py
+
13
−
13
View file @
2b68c88c
...
@@ -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
):
"""
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment