python-apache-libcloud/ec2_create_node.patch

25 lines
879 B
Diff
Raw Normal View History

Index: apache-libcloud-2.8.1/libcloud/compute/drivers/ec2.py
===================================================================
--- apache-libcloud-2.8.1.orig/libcloud/compute/drivers/ec2.py
+++ apache-libcloud-2.8.1/libcloud/compute/drivers/ec2.py
@@ -1892,12 +1892,18 @@ class BaseEC2NodeDriver(NodeDriver):
for system shutdown.
:type ex_terminate_on_shutdown: ``bool``
"""
+
+ 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: