Matt Black created LIBCLOUD-290:
-----------------------------------
Summary: 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