Venu | Spice console

Change-Id: Id9a5f93e1529d40483788db4115e1f15759c4e3a
This commit is contained in:
Venu Murthy 2015-03-18 20:21:09 +05:30
parent 902b359254
commit f136cbec71
1 changed files with 5 additions and 1 deletions

View File

@ -632,6 +632,10 @@ class EC2Driver(driver.ComputeDriver):
'port': 6969}
def get_spice_console(self, instance):
""" Simple Protocol for Independent Computing Environments
Doesn't seem to be supported by AWS EC2 directly
"""
return {'internal_access_path': 'EC2',
'host': 'EC2spiceconsole.com',
'port': 6969,
@ -738,7 +742,7 @@ class EC2Driver(driver.ComputeDriver):
LOG.info("************** REFRESH INSTANCE SECURITY RULES ******************")
LOG.info(instance)
# TODO: lock for case when group is associated with multiple instances [Cameron & Ed]
# TODO: lock for case when group is associated with multiple instances
self.instance_rule_refresher.refresh(self.nova.servers.get(instance['id']))