components/python/novaclient/patches/01-novaclient-migration-list.patch
changeset 3998 5bd484384122
parent 2058 f97e212983b2
child 5405 66fd59fecd68
equal deleted inserted replaced
3997:0ca3f3d6c919 3998:5bd484384122
     1 # Patch to prevent nova migration-list from generating an error.
     1 # Patch to prevent nova migration-list from generating an error.
     2 # This patch has not yet been submitted upstream. 
     2 # This patch has not yet been submitted upstream. 
     3 
     3 
     4 --- python-novaclient-2.17.0/novaclient/base.py.orig        2014-08-22 16:12:58.186693128 -0600
     4 --- python-novaclient-2.20.0/novaclient/base.py.~1~	2014-09-20 15:12:42.000000000 -0700
     5 +++ python-novaclient-2.17.0/novaclient/base.py     2014-08-22 16:16:19.119321660 -0600
     5 +++ python-novaclient-2.20.0/novaclient/base.py	2014-12-13 14:26:17.459463436 -0800
     6 @@ -73,7 +73,7 @@
     6 @@ -76,7 +76,7 @@ class Manager(utils.HookableMixin):
     7              try:
     7              try:
     8                  data = data['values']
     8                  data = data['values']
     9              except KeyError:
     9              except KeyError:
    10 -                pass
    10 -                pass
    11 +                data = []
    11 +                data = []
    12 
    12  
    13          with self.completion_cache('human_id', obj_class, mode="w"):
    13          self._clear_completion_cache_for_class(obj_class)
    14              with self.completion_cache('uuid', obj_class, mode="w"):
    14  
    15