Updated Branches: refs/heads/0.12.x b5f4a42ac -> 428082821 refs/heads/trunk 7a5d2b998 -> 692dd9c72
Issue LIBCLOUD-346: Fix ElasticHosts API endpoint host names. Signed-off-by: Tomaz Muraus <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/3cbe8676 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/3cbe8676 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/3cbe8676 Branch: refs/heads/trunk Commit: 3cbe8676081ffb16524f36ba07ee40240f866f34 Parents: 7a5d2b9 Author: Bob Thompson <[email protected]> Authored: Fri Jun 21 15:43:07 2013 -0400 Committer: Tomaz Muraus <[email protected]> Committed: Fri Jun 21 23:47:40 2013 +0200 ---------------------------------------------------------------------- libcloud/compute/drivers/elastichosts.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/3cbe8676/libcloud/compute/drivers/elastichosts.py ---------------------------------------------------------------------- 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' } }
