some more cleanup

This commit is contained in:
Anthony Young 2011-01-04 16:22:47 -08:00
parent ee2d8a5bcd
commit 7c01430020
4 changed files with 1 additions and 28 deletions

View File

@ -26,20 +26,6 @@ import httplib
from nova import flags
from boto.ec2.regioninfo import RegionInfo
class ConsoleInfo(object):
def __init__(self, connection=None, endpoint=None):
self.connection = connection
self.endpoint = endpoint
def startElement(self, name, attrs, connection):
return None
def endElement(self, name, value, connection):
if name == 'url':
self.url = str(value)
if name == 'kind':
self.url = str(value)
FLAGS = flags.FLAGS
DEFAULT_CLC_URL = 'http://127.0.0.1:8773'
@ -389,13 +375,3 @@ class NovaAdminClient(object):
def get_hosts(self):
return self.apiconn.get_list('DescribeHosts', {}, [('item', HostInfo)])
def create_console(self, instance_id, kind='ajax'):
"""
Create a console
"""
console = self.apiconn.get_object('CreateConsole', {'Kind': kind, 'InstanceId': instance_id}, ConsoleInfo)
if console.url != None:
return console

View File

@ -183,4 +183,3 @@ class AdminController(object):
def describe_host(self, _context, name, **_kwargs):
"""Returns status info for single node."""
return host_dict(db.host_get(name))

View File

@ -774,8 +774,6 @@ class CloudController(object):
return self._format_run_instances(context,
instances[0]['reservation_id'])
def run_instances2(self, context, **kwargs):
return self.run_instances(context, kwargs)
def terminate_instances(self, context, instance_id, **kwargs):
"""Terminate each instance in instance_id, which is a list of ec2 ids.
instance_id is a kwarg so its name cannot be modified."""

View File

@ -72,7 +72,7 @@
</filterref>
</interface>
<!-- The order is significant here. File is first -->
<!-- The order is significant here. File must be defined first -->
<serial type="file">
<source path='${basepath}/console.log'/>
<target port='1'/>