diff options
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/scheduler/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/scheduler/service.py b/nova/scheduler/service.py index aca5b5db6..2875dd554 100644 --- a/nova/scheduler/service.py +++ b/nova/scheduler/service.py @@ -78,7 +78,7 @@ class SchedulerService(service.Service): def run_instance(self, instance_id, **_kwargs): node = self.pick_node(instance_id, **_kwargs) - rpc.cast('%s:%s' % (FLAGS.compute_topic, node), + rpc.cast('%s.%s' % (FLAGS.compute_topic, node), {"method": "run_instance", "args": {"instance_id" : instance_id}}) logging.debug("Casting to node %s for instance %s" % |
