SEBA-461 use config filename consistent with xos-migrate tool

Change-Id: I7f6d45b9c9455670d57cbadf0a9cefa08761c804
diff --git a/Dockerfile.synchronizer b/Dockerfile.synchronizer
index 0137f8b..3958e3b 100644
--- a/Dockerfile.synchronizer
+++ b/Dockerfile.synchronizer
@@ -14,7 +14,7 @@
 
 # xosproject/simpleexampleservice-synchronizer
 
-FROM xosproject/xos-synchronizer-base:2.1.38
+FROM xosproject/xos-synchronizer-base:2.1.44
 
 COPY xos/synchronizer /opt/xos/synchronizers/simpleexampleservice
 COPY VERSION /opt/xos/synchronizers/simpleexampleservice/
diff --git a/VERSION b/VERSION
index 0664a8f..2bf1ca5 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.1.6
+1.1.7
diff --git a/xos/synchronizer/simpleexampleservice_config.yaml b/xos/synchronizer/config.yaml
similarity index 100%
rename from xos/synchronizer/simpleexampleservice_config.yaml
rename to xos/synchronizer/config.yaml
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()
-
-