summaryrefslogtreecommitdiffstats
path: root/nova/console
diff options
context:
space:
mode:
Diffstat (limited to 'nova/console')
-rw-r--r--nova/console/manager.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/console/manager.py b/nova/console/manager.py
index bd606a6ff..777f051bb 100644
--- a/nova/console/manager.py
+++ b/nova/console/manager.py
@@ -59,7 +59,8 @@ class ConsoleProxyManager(manager.Manager):
if not console_driver:
console_driver = CONF.console_driver
self.driver = importutils.import_object(console_driver)
- super(ConsoleProxyManager, self).__init__(*args, **kwargs)
+ super(ConsoleProxyManager, self).__init__(service_name='console',
+ *args, **kwargs)
self.driver.host = self.host
self.compute_rpcapi = compute_rpcapi.ComputeAPI()