From bcdec7b2500148500baa6806016d74302cbdaf24 Mon Sep 17 00:00:00 2001 From: Bob Thompson Date: Fri, 21 Jun 2013 15:43:07 -0400 Subject: [PATCH] Issue LIBCLOUD-346: Fix ElasticHosts API endpoint host names. --- libcloud/compute/drivers/elastichosts.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libcloud/compute/drivers/elastichosts.py b/libcloud/compute/drivers/elastichosts.py index 9b69cac..ea801ee 100644 --- a/libcloud/compute/drivers/elastichosts.py +++ b/libcloud/compute/drivers/elastichosts.py @@ -27,42 +27,42 @@ API_ENDPOINTS = { 'uk-1': { 'name': 'London Peer 1', 'country': 'United Kingdom', - 'host': 'api.lon-p.elastichosts.com' + 'host': 'api-lon-p.elastichosts.com' }, 'uk-2': { 'name': 'London BlueSquare', 'country': 'United Kingdom', - 'host': 'api.lon-b.elastichosts.com' + 'host': 'api-lon-b.elastichosts.com' }, 'us-1': { 'name': 'San Antonio Peer 1', 'country': 'United States', - 'host': 'api.sat-p.elastichosts.com' + 'host': 'api-sat-p.elastichosts.com' }, 'us-2': { 'name': 'Los Angeles Peer 1', 'country': 'United States', - 'host': 'api.lax-p.elastichosts.com' + 'host': 'api-lax-p.elastichosts.com' }, 'us-3': { 'name': 'San Jose (Silicon Valley)', 'country': 'United States', - 'host': 'api.sjc-c.elastichosts.com' + 'host': 'api-sjc-c.elastichosts.com' }, 'ca-1': { 'name': 'Toronto Peer 1', 'country': 'Canada', - 'host': 'api.tor-p.elastichosts.com' + 'host': 'api-tor-p.elastichosts.com' }, 'au-1': { 'name': 'Sydney', 'country': 'Australia', - 'host': 'api.syd-v.elastichosts.com' + 'host': 'api-syd-v.elastichosts.com' }, 'cn-1': { 'name': 'Hong Kong', 'country': 'China', - 'host': 'api.hkg-e.elastichosts.com' + 'host': 'api-hkg-e.elastichosts.com' } } -- 1.8.1.msysgit.1