Skip to content
Snippets Groups Projects
Commit 48412162 authored by Walter Lampl's avatar Walter Lampl
Browse files

ComponentAccumulator.run(): Special treatment of MessageSvc to allow setting MessageSvc properties

parent ccedba41
No related branches found
No related tags found
No related merge requests found
...@@ -828,7 +828,12 @@ class ComponentAccumulator(object): ...@@ -828,7 +828,12 @@ class ComponentAccumulator(object):
#Add services #Add services
for svc in self._services: for svc in self._services:
addCompToJos(svc) if svc.getFullName()=="MessageSvc/MessageSvc":
#Message svc exists already! Needs special treatment
for k, v in svc.getValuedProperties().items():
bsh.setProperty(msp,k,str(v).encode())
else:
addCompToJos(svc)
pass pass
#Add tree of algorithm sequences: #Add tree of algorithm sequences:
......
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