Fix xos endpoints and subscriber features for latest creates

Change-Id: Ic0e66ceb085dd58b66ee00d198e1982b5dcdbf3d
diff --git a/src/test/utils/CordSubscriberUtils.py b/src/test/utils/CordSubscriberUtils.py
index d7ca649..b4fe30c 100644
--- a/src/test/utils/CordSubscriberUtils.py
+++ b/src/test/utils/CordSubscriberUtils.py
@@ -47,8 +47,8 @@
             user = xos_cfg['user']
             password = xos_cfg['password']
             xos_endpoints = endpoint.split(':')
-            xos_host = xos_endpoints[1][len('//'):]
-            xos_port = xos_endpoints[2][:-1]
+            xos_host = xos_endpoints[0]
+            xos_port = xos_endpoints[1]
             #log.info('xos_host: %s, port: %s, user: %s, password: %s' %(xos_host, xos_port, user, password))
             return dict(host = xos_host, port = xos_port, user = user, password = password)
 
@@ -315,7 +315,7 @@
 
     def getConfig(self):
         features =  {
-            'cdn': True,
+            'cdn_enable': True,
             'uplink_speed': 1000000000,
             'downlink_speed': 1000000000,
             'enable_uverse': True,