~markmc/nova/flat-dhcp-without-bridge-iface

« back to all changes in this revision

Viewing changes to nova/compute/api.py

  • Committer: Tarmac
  • Author(s): Ed Leafe
  • Date: 2011-08-19 18:37:39 UTC
  • mfrom: (1452.2.4 lp828848)
  • Revision ID: tarmac-20110819183739-yar3yr2qoq96oscy
Removes the incorrect hard-coded filter path.

Show diffs side-by-side

added added

removed removed

Lines of Context:
411
411
            LOG.debug(_("Casting to scheduler for %(pid)s/%(uid)s's"
412
412
                    " (all-at-once)") % locals())
413
413
 
414
 
        filter_class = 'nova.scheduler.host_filter.InstanceTypeFilter'
415
414
        request_spec = {
416
415
            'image': image,
417
416
            'instance_properties': base_options,
418
417
            'instance_type': instance_type,
419
 
            'filter': filter_class,
 
418
            'filter': None,
420
419
            'blob': zone_blob,
421
420
            'num_instances': num_instances,
422
421
        }