added cleared exception logging for booting services and fixed rest issue with loading an xml file
This commit is contained in:
parent
eec7fbb213
commit
348f208d4d
2 changed files with 7 additions and 1 deletions
|
@ -447,7 +447,11 @@ class CoreServices(object):
|
|||
"""
|
||||
logger.info("booting node services: %s", boot_path)
|
||||
for service in boot_path:
|
||||
self.boot_service(node, service)
|
||||
try:
|
||||
self.boot_service(node, service)
|
||||
except:
|
||||
logger.exception("error booting service: %s", service.name)
|
||||
raise
|
||||
|
||||
def boot_service(self, node, service):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue