diff options
| author | matt.dietz@rackspace.com <> | 2011-08-18 16:24:24 -0500 |
|---|---|---|
| committer | matt.dietz@rackspace.com <> | 2011-08-18 16:24:24 -0500 |
| commit | f3f780858e4a4076905b09faf6902bcab1071f11 (patch) | |
| tree | b4a3466113456a7d3a3e7421f6125668447a2456 | |
| parent | e877efe3b1de00d8b2eb3139ee60fd6c2464ce7d (diff) | |
| parent | 19495e51bc86bf1bc333759e3825ab4b5592ff66 (diff) | |
resolve conflicts after upstream merge
| -rw-r--r-- | nova/compute/api.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py index 7c1b388c0..b3932c644 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -1068,10 +1068,10 @@ class API(base.Base): """Unpause the given instance.""" self._cast_compute_message('unpause_instance', context, instance_id) - def _call_compute_message_for_host(self, context, host, params): + def _call_compute_message_for_host(self, action, context, host, params): """Call method deliberately designed to make host/service only calls""" queue = self.db.queue_get_for(context, FLAGS.compute_topic, host) - kwargs = {'method': method, 'args': params} + kwargs = {'method': action, 'args': params} return rpc.call(context, queue, kwargs) def set_host_enabled(self, context, host, enabled): |
