diff options
| author | Ed Leafe <ed@leafe.com> | 2011-08-19 18:37:39 +0000 |
|---|---|---|
| committer | Tarmac <> | 2011-08-19 18:37:39 +0000 |
| commit | 1bcdf2f32d02e52c61c7b6d0f90d0354612d511e (patch) | |
| tree | 8762776c4fb8fe7be94eb30261893f151b460b14 /nova/compute | |
| parent | ba079e5ccfa6b5f9fdfa036842f3e5ba51df4b75 (diff) | |
| parent | ce5c95424148649cbd4faca1d5c85c0d6209e3d4 (diff) | |
Removes the incorrect hard-coded filter path.
Diffstat (limited to 'nova/compute')
| -rw-r--r-- | nova/compute/api.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py index b3932c644..efc9da79b 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -411,12 +411,11 @@ class API(base.Base): LOG.debug(_("Casting to scheduler for %(pid)s/%(uid)s's" " (all-at-once)") % locals()) - filter_class = 'nova.scheduler.host_filter.InstanceTypeFilter' request_spec = { 'image': image, 'instance_properties': base_options, 'instance_type': instance_type, - 'filter': filter_class, + 'filter': None, 'blob': zone_blob, 'num_instances': num_instances, } |
