Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review 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
RadioObservatory
LOFAR
Commits
643d05c0
Commit
643d05c0
authored
6 years ago
by
Auke Klazema
Browse files
Options
Downloads
Patches
Plain Diff
SW-609
: Fix Configparser and print issues
parent
72b9246d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LCS/MessageDaemons/src/MessageRouter
+7
-7
7 additions, 7 deletions
LCS/MessageDaemons/src/MessageRouter
with
7 additions
and
7 deletions
LCS/MessageDaemons/src/MessageRouter
+
7
−
7
View file @
643d05c0
...
...
@@ -27,13 +27,13 @@ import lofar.messagebus.messagebus as messagebus
import
lofar.messagebus.message
as
message
import
threading
from
C
onfig
P
arser
import
Safe
ConfigParser
from
c
onfig
p
arser
import
ConfigParser
import
os.path
import
sys
from
datetime
import
datetime
def
log
(
level
,
msg
):
print
"
%s %-4s %s
"
%
(
str
(
datetime
.
now
())[:
-
3
],
level
,
msg
)
print
(
"
%s %-4s %s
"
%
(
str
(
datetime
.
now
())[:
-
3
],
level
,
msg
)
)
class
BusMulticast
(
threading
.
Thread
):
"""
...
...
@@ -66,7 +66,7 @@ class BusMulticast(threading.Thread):
try
:
content
=
msg
.
content
()
log
(
"
INFO
"
,
"
[%s] [%s] Message received
"
%
(
self
.
source
,
content
))
except
Exception
,
e
:
except
Exception
as
e
:
content
=
"
<unknown>
"
log
(
"
WARN
"
,
"
[%s] Non-compliant message received
"
%
(
self
.
source
,))
...
...
@@ -78,7 +78,7 @@ class BusMulticast(threading.Thread):
log
(
"
INFO
"
,
"
[%s] [%s] Forwarded to %s
"
%
(
self
.
source
,
content
,
self
.
destlist
))
except
Exception
,
e
:
except
Exception
as
e
:
log
(
"
FATAL
"
,
"
[%s] Caught exception: %s
"
%
(
self
.
source
,
e
))
# Abort everything, to avoid half-broken situations
...
...
@@ -87,7 +87,7 @@ class BusMulticast(threading.Thread):
log
(
"
INFO
"
,
"
[%s] Done
"
%
(
self
.
source
,))
class
RouterConfig
(
Safe
ConfigParser
):
class
RouterConfig
(
ConfigParser
):
"""
Router configuration. Example:
...
...
@@ -99,7 +99,7 @@ class RouterConfig(SafeConfigParser):
and allow multiple source: dest lines to accumulate.
"""
def
__init__
(
self
,
filename
=
None
):
Safe
ConfigParser
.
__init__
(
self
)
ConfigParser
.
__init__
(
self
)
# set defaults
self
.
add_section
(
'
multicast
'
)
...
...
@@ -114,7 +114,7 @@ class RouterConfig(SafeConfigParser):
return
False
log
(
"
INFO
"
,
"
[RouterConfig] Reading %s
"
%
(
filename
,))
Safe
ConfigParser
.
read
(
self
,
filename
)
ConfigParser
.
read
(
self
,
filename
)
return
True
def
sources
(
self
):
...
...
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