[ 
https://issues.apache.org/jira/browse/LIBCLOUD-290?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13572907#comment-13572907
 ] 

Matt Black commented on LIBCLOUD-290:
-------------------------------------

On tag 0.12.0 AND on 0.12.x HEAD:

Python 2.7.3 (default, Aug  1 2012, 05:16:07) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from libcloud.compute.providers import get_driver
>>> from libcloud.compute.types import Provider
>>> driver = get_driver(Provider.EC2_AP_SOUTHEAST)
>>> driver.region_name
'ap-southeast-1'
>>> driver = driver('xxx', 'xxx')
>>> driver.region_name
'us-east-1'
>>> 
                
> Removal of "datacenter" var from 0.12.0 forces user to supply datacenter 
> parameter to EC2NodeDriver.__init__()
> --------------------------------------------------------------------------------------------------------------
>
>                 Key: LIBCLOUD-290
>                 URL: https://issues.apache.org/jira/browse/LIBCLOUD-290
>             Project: Libcloud
>          Issue Type: Bug
>          Components: Compute
>            Reporter: Matt Black
>
> When I instantiate libcloud via get_driver(Provider.EC2_AP_SOUTHEAST), I'm 
> returned a libcloud.compute.drivers.ec2.EC2APSENodeDriver object. Since the 
> refactor to remove "datacenter", EC2NodeDriver.__init__() sets my region back 
> to "us-east-1".
> Previously this code worked:
> driver = get_driver(Provider.EC2_AP_SOUTHEAST)
> connection = driver(key, secret)
> Now I need:
> driver = get_driver(Provider.EC2_AP_SOUTHEAST)
> connection = driver(key, secret, datacenter="ap-southeast-1")
> Reference:
> https://github.com/apache/libcloud/commit/923704a204939eb50d547ad1bc9edc7a1108f158

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to