diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-08-25 00:13:43 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-08-25 00:13:43 +0000 |
| commit | 982ce57ef843d40dd4fd6c44140a5233ef4f656a (patch) | |
| tree | 5816fd232eeb2f8b1d56d7c6b7fd237d49831eb8 /nova | |
| parent | 0aeaaefd06970e36e962b809cf4538a160b78ea8 (diff) | |
| parent | 44d467402d31c3ca29b4c4e3fae41aff3fca7593 (diff) | |
| download | nova-982ce57ef843d40dd4fd6c44140a5233ef4f656a.tar.gz nova-982ce57ef843d40dd4fd6c44140a5233ef4f656a.tar.xz nova-982ce57ef843d40dd4fd6c44140a5233ef4f656a.zip | |
Merge "Fix broken SimpleScheduler.schedule_run_instance()"
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/scheduler/simple.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/scheduler/simple.py b/nova/scheduler/simple.py index 354e7cfc1..f8a1e4154 100644 --- a/nova/scheduler/simple.py +++ b/nova/scheduler/simple.py @@ -51,7 +51,7 @@ class SimpleScheduler(chance.ChanceScheduler): deprecated.warn(_('SimpleScheduler now only covers volume scheduling ' 'and is deprecated in Folsom. Non-volume functionality in ' 'SimpleScheduler has been replaced by FilterScheduler')) - super(SimpleScheduler, self).schedule_run_instance(self, context, + super(SimpleScheduler, self).schedule_run_instance(context, request_spec, reservations, *_args, **_kwargs) def schedule_create_volume(self, context, volume_id, *_args, **_kwargs): |
