summaryrefslogtreecommitdiffstats
path: root/nova/compute
diff options
context:
space:
mode:
authorEd Leafe <ed@leafe.com>2011-08-19 18:37:39 +0000
committerTarmac <>2011-08-19 18:37:39 +0000
commit1bcdf2f32d02e52c61c7b6d0f90d0354612d511e (patch)
tree8762776c4fb8fe7be94eb30261893f151b460b14 /nova/compute
parentba079e5ccfa6b5f9fdfa036842f3e5ba51df4b75 (diff)
parentce5c95424148649cbd4faca1d5c85c0d6209e3d4 (diff)
Removes the incorrect hard-coded filter path.
Diffstat (limited to 'nova/compute')
-rw-r--r--nova/compute/api.py3
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,
}