diff options
| author | Anthony Young <sleepsonthefloor@gmail.com> | 2011-03-29 13:55:01 -0700 |
|---|---|---|
| committer | Anthony Young <sleepsonthefloor@gmail.com> | 2011-03-29 13:55:01 -0700 |
| commit | 2c533ca5a4cd74907b3238ec65ab29c4f686dfcc (patch) | |
| tree | 3121295ea2c026eac6dd917d82a990e11deb5095 | |
| parent | 817572265871fd2cfd1252dd0cffb167f0e2ccdb (diff) | |
| download | nova-2c533ca5a4cd74907b3238ec65ab29c4f686dfcc.tar.gz nova-2c533ca5a4cd74907b3238ec65ab29c4f686dfcc.tar.xz nova-2c533ca5a4cd74907b3238ec65ab29c4f686dfcc.zip | |
switch cast to a call
| -rw-r--r-- | nova/compute/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py index 8f5803649..89d821d44 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -614,7 +614,7 @@ class API(base.Base): output = self._call_compute_message('get_vnc_console', context, instance_id) - rpc.cast(context, '%s' % FLAGS.vncproxy_topic, + rpc.call(context, '%s' % FLAGS.vncproxy_topic, {'method': 'authorize_vnc_console', 'args': {'token': output['token'], 'host': output['host'], |
