1
0

Accepting request 765058 from home:mcalabkova:branches:devel:languages:python

- update to 2.8.0
  * Distribution now includes py.typed file which signals mypy that 
    this package contains type annotations
  * Fix get_driver() bug / regression not working if the provider 
    argument was a string and not a Provider ENUM.

OBS-URL: https://build.opensuse.org/request/show/765058
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-apache-libcloud?expand=0&rev=92
This commit is contained in:
Tomáš Chvátal
2020-01-16 19:25:37 +00:00
committed by Git OBS Bridge
parent 67243e8c70
commit d6ce3c5cb9
5 changed files with 24 additions and 13 deletions

View File

@@ -1,9 +1,11 @@
--- apache-libcloud-2.4.0/libcloud/compute/drivers/ec2.py.orig 2019-02-25 17:38:58.959040486 +0700
+++ apache-libcloud-2.4.0/libcloud/compute/drivers/ec2.py 2019-02-25 17:39:13.791169683 +0700
@@ -1865,12 +1865,18 @@
Index: apache-libcloud-2.8.0/libcloud/compute/drivers/ec2.py
===================================================================
--- apache-libcloud-2.8.0.orig/libcloud/compute/drivers/ec2.py
+++ apache-libcloud-2.8.0/libcloud/compute/drivers/ec2.py
@@ -1892,12 +1892,18 @@ class BaseEC2NodeDriver(NodeDriver):
for system shutdown.
:type ex_terminate_on_shutdown: ``bool``
"""
image = kwargs["image"]
size = kwargs["size"]
+
+ try:
+ instance_type = size.id
@@ -13,10 +15,10 @@
params = {
'Action': 'RunInstances',
'ImageId': image.id,
'MinCount': str(kwargs.get('ex_mincount', '1')),
'MaxCount': str(kwargs.get('ex_maxcount', '1')),
'MinCount': str(ex_mincount),
'MaxCount': str(ex_maxcount),
- 'InstanceType': size.id
+ 'InstanceType': instance_type
}
if kwargs.get("ex_terminate_on_shutdown", False):
if ex_terminate_on_shutdown: