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
cb6fd4d4
Commit
cb6fd4d4
authored
3 years ago
by
Jan David Mol
Browse files
Options
Downloads
Patches
Plain Diff
L2SS-544
: Trigger on DevState.FAULT directly, instead of parsing state string.
parent
e15625f7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
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
+7
-9
7 additions, 9 deletions
tangostationcontrol/tangostationcontrol/toolkit/archiver.py
with
7 additions
and
9 deletions
tangostationcontrol/tangostationcontrol/toolkit/archiver.py
+
7
−
9
View file @
cb6fd4d4
...
...
@@ -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
...
...
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