SEBA-461 use config filename consistent with xos-migrate tool
Change-Id: I7f6d45b9c9455670d57cbadf0a9cefa08761c804
diff --git a/xos/synchronizer/simpleexampleservice-synchronizer.py b/xos/synchronizer/simpleexampleservice-synchronizer.py
index 26cc382..fde1b86 100644
--- a/xos/synchronizer/simpleexampleservice-synchronizer.py
+++ b/xos/synchronizer/simpleexampleservice-synchronizer.py
@@ -20,14 +20,15 @@
from xossynchronizer import Synchronizer
from xosconfig import Config
-base_config_file = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/simpleexampleservice_config.yaml')
-mounted_config_file = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/mounted_config.yaml')
+base_config_file = os.path.abspath(os.path.dirname(
+ os.path.realpath(__file__)) + '/config.yaml')
+mounted_config_file = os.path.abspath(os.path.dirname(
+ os.path.realpath(__file__)) + '/mounted_config.yaml')
if os.path.isfile(mounted_config_file):
- Config.init(base_config_file, 'synchronizer-config-schema.yaml', mounted_config_file)
+ Config.init(base_config_file, 'synchronizer-config-schema.yaml',
+ mounted_config_file)
else:
Config.init(base_config_file, 'synchronizer-config-schema.yaml')
Synchronizer().run()
-
-