added configuration for loading custom config services
This commit is contained in:
parent
6aa7d2175d
commit
a8a1643ee0
2 changed files with 4 additions and 0 deletions
|
@ -61,6 +61,9 @@ class CoreEmu:
|
|||
self.service_manager = ConfigServiceManager()
|
||||
config_services_path = os.path.abspath(os.path.dirname(configservices.__file__))
|
||||
self.service_manager.load(config_services_path)
|
||||
custom_dir = self.config.get("custom_config_services_dir")
|
||||
if custom_dir:
|
||||
self.service_manager.load(custom_dir)
|
||||
|
||||
# catch exit event
|
||||
atexit.register(self.shutdown)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue