diff options
| author | Brian Lamar <brian.lamar@rackspace.com> | 2011-06-21 11:50:28 -0400 |
|---|---|---|
| committer | Brian Lamar <brian.lamar@rackspace.com> | 2011-06-21 11:50:28 -0400 |
| commit | 7c846ea890f3c7143fd5e158931fc415e53a9bf0 (patch) | |
| tree | 8ac8b7f76cac8c0de88947fbdc4dd248da28839e /nova/tests | |
| parent | 742c21e4e79ce5a26975b31486ded3956a846c55 (diff) | |
Fixed objectstore test.
Diffstat (limited to 'nova/tests')
| -rw-r--r-- | nova/tests/test_objectstore.py | 7 |
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') |
