Skip to content
GitLab
Explore
Sign in
Register
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
7209bb95
Commit
7209bb95
authored
1 year ago
by
Hannes Feldt
Browse files
Options
Downloads
Plain Diff
Merge branch 'fix-tcp-replicator' into 'master'
Fix tcp replicator See merge request
!784
parents
5c14a4e9
8911b798
No related branches found
No related tags found
1 merge request
!784
Fix tcp replicator
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
tangostationcontrol/VERSION
+1
-1
1 addition, 1 deletion
tangostationcontrol/VERSION
tangostationcontrol/tangostationcontrol/clients/statistics/consumer.py
+4
-1
4 additions, 1 deletion
...ontrol/tangostationcontrol/clients/statistics/consumer.py
with
5 additions
and
2 deletions
tangostationcontrol/VERSION
+
1
−
1
View file @
7209bb95
0.24.
6
0.24.
7
This diff is collapsed.
Click to expand it.
tangostationcontrol/tangostationcontrol/clients/statistics/consumer.py
+
4
−
1
View file @
7209bb95
...
...
@@ -7,6 +7,7 @@ from queue import Queue
from
threading
import
Thread
from
lofar_station_client.statistics.collector
import
StatisticsCollector
from
lofar_station_client.statistics.packets
import
StatisticsPacket
from
tangostationcontrol.clients.statistics.client_thread
import
StatisticsClientThread
logger
=
logging
.
getLogger
()
...
...
@@ -70,7 +71,9 @@ class StatisticsConsumer(Thread, StatisticsClientThread):
break
try
:
self
.
collector
.
process_packet
(
self
.
last_packet
)
self
.
collector
.
process_packet
(
StatisticsPacket
.
parse_packet
(
self
.
last_packet
)
)
except
ValueError
as
e
:
self
.
_exception_logging
(
e
)
# continue processing
...
...
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