summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorBrian Lamar <brian.lamar@rackspace.com>2011-06-21 11:50:28 -0400
committerBrian Lamar <brian.lamar@rackspace.com>2011-06-21 11:50:28 -0400
commit7c846ea890f3c7143fd5e158931fc415e53a9bf0 (patch)
tree8ac8b7f76cac8c0de88947fbdc4dd248da28839e /nova/tests
parent742c21e4e79ce5a26975b31486ded3956a846c55 (diff)
Fixed objectstore test.
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/test_objectstore.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/nova/tests/test_objectstore.py b/nova/tests/test_objectstore.py
index 7e69565f3..39b4e18d7 100644
--- a/nova/tests/test_objectstore.py
+++ b/nova/tests/test_objectstore.py
@@ -70,8 +70,11 @@ class S3APITestCase(test.TestCase):
os.mkdir(FLAGS.buckets_path)
router = s3server.S3Application(FLAGS.buckets_path)
- self.server = wsgi.Server()
- self.server.start(router, host=FLAGS.s3_host, port=FLAGS.s3_port)
+ self.server = wsgi.Server("S3 Objectstore",
+ router,
+ host=FLAGS.s3_host,
+ port=FLAGS.s3_port)
+ self.server.start()
if not boto.config.has_section('Boto'):
boto.config.add_section('Boto')