Fix a bunch of pep8 stuff

This commit is contained in:
Monsyne Dragon
2011-01-05 19:45:46 -06:00
parent 3a3610fd0c
commit ac45db4478
2 changed files with 11 additions and 11 deletions

View File

@@ -218,7 +218,8 @@ DEFINE_integer('s3_port', 3333, 's3 port')
DEFINE_string('s3_host', utils.get_my_ip(), 's3 host (for infrastructure)')
DEFINE_string('s3_dmz', utils.get_my_ip(), 's3 dmz ip (for instances)')
DEFINE_string('compute_topic', 'compute', 'the topic compute nodes listen on')
DEFINE_string('console_topic', 'console', 'the topic console proxy nodes listen on')
DEFINE_string('console_topic', 'console',
'the topic console proxy nodes listen on')
DEFINE_string('scheduler_topic', 'scheduler',
'the topic scheduler nodes listen on')
DEFINE_string('volume_topic', 'volume', 'the topic volume nodes listen on')

View File

@@ -89,12 +89,12 @@ class ConsoleTestCase(test.TestCase):
self.assertEqual(pool['id'], pool2['id'])
def test_get_pool_does_not_create_new_pool_if_exists(self):
pool_info = {'address' : '127.0.0.1',
'username' : 'test',
'password' : '1234pass',
'host' : self.console.host,
'console_type' : self.console.driver.console_type,
'compute_host' : 'sometesthostname' }
pool_info = {'address': '127.0.0.1',
'username': 'test',
'password': '1234pass',
'host': self.console.host,
'console_type': self.console.driver.console_type,
'compute_host': 'sometesthostname'}
new_pool = db.console_pool_create(self.context, pool_info)
pool = self.console.get_pool_for_instance_host(self.context,
'sometesthostname')
@@ -116,7 +116,7 @@ class ConsoleTestCase(test.TestCase):
instance_id = self._create_instance()
cons1 = self.console.add_console(self.context, instance_id)
cons2 = self.console.add_console(self.context, instance_id)
self.assertEqual(cons1,cons2)
self.assertEqual(cons1, cons2)
def test_remove_console(self):
instance_id = self._create_instance()
@@ -127,4 +127,3 @@ class ConsoleTestCase(test.TestCase):
db.console_get,
self.context,
console_id)