Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:bmwiedemann:reproducible:distribution:ring1
python-apache-libcloud
ec2_create_node.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File ec2_create_node.patch of Package python-apache-libcloud
Index: apache-libcloud-3.5.1/libcloud/compute/drivers/ec2.py =================================================================== --- apache-libcloud-3.5.1.orig/libcloud/compute/drivers/ec2.py +++ apache-libcloud-3.5.1/libcloud/compute/drivers/ec2.py @@ -1622,12 +1622,18 @@ class BaseEC2NodeDriver(NodeDriver): on-demand price will be used. :type ex_spot_max_price: ``float`` """ + + try: + instance_type = size.id + except AttributeError: + instance_type = size + params = { "Action": "RunInstances", "ImageId": image.id, "MinCount": str(ex_mincount), "MaxCount": str(ex_maxcount), - "InstanceType": size.id, + "InstanceType": instance_type, } if ex_terminate_on_shutdown:
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor