diff options
| author | Ed Leafe <ed@leafe.com> | 2011-08-18 17:30:00 +0000 |
|---|---|---|
| committer | Ed Leafe <ed@leafe.com> | 2011-08-18 17:30:00 +0000 |
| commit | ffbf26392f06ecac55e72ed25f59fd550a5262f5 (patch) | |
| tree | 5cb22f2043783878540f8ee80cd6ca4d65330b1b | |
| parent | 7c957d7821437604b99d7383c8674676dc3921dc (diff) | |
| download | nova-ffbf26392f06ecac55e72ed25f59fd550a5262f5.tar.gz nova-ffbf26392f06ecac55e72ed25f59fd550a5262f5.tar.xz nova-ffbf26392f06ecac55e72ed25f59fd550a5262f5.zip | |
Changed the filter specified in _ask_scheduler_to_create_instance() to None, since the value isn't used when creating an instance.
| -rw-r--r-- | nova/compute/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py index 229d02af4..e033c6c74 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -415,7 +415,7 @@ class API(base.Base): 'image': image, 'instance_properties': base_options, 'instance_type': instance_type, - 'filter': 'InstanceTypeFilter' + 'filter': None, 'blob': zone_blob, 'num_instances': num_instances, } |
