diff options
| author | Brian Lamar <brian.lamar@rackspace.com> | 2011-06-19 18:00:38 -0400 |
|---|---|---|
| committer | Brian Lamar <brian.lamar@rackspace.com> | 2011-06-19 18:00:38 -0400 |
| commit | 79402ffbaeae18bb4adaa899743a688ef0bcb24b (patch) | |
| tree | 4f97450daeac14a985d5ef9b1e1953f74cb61bff | |
| parent | 1e047dae71131a0080310990dc6899852d233941 (diff) | |
| download | nova-79402ffbaeae18bb4adaa899743a688ef0bcb24b.tar.gz nova-79402ffbaeae18bb4adaa899743a688ef0bcb24b.tar.xz nova-79402ffbaeae18bb4adaa899743a688ef0bcb24b.zip | |
Cleanup of the cleanup.
| -rwxr-xr-x | bin/nova-api | 6 | ||||
| -rw-r--r-- | nova/tests/integrated/integrated_helpers.py | 3 | ||||
| -rw-r--r-- | setup.cfg | 3 |
3 files changed, 2 insertions, 10 deletions
diff --git a/bin/nova-api b/bin/nova-api index ff4aa83d1..1fcda24f4 100755 --- a/bin/nova-api +++ b/bin/nova-api @@ -1,4 +1,5 @@ #!/usr/bin/env python +# vim: tabstop=4 shiftwidth=4 softtabstop=4 # # Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. @@ -18,13 +19,10 @@ """Starter script for Nova API. -Starts both the EC2 and OpenStack APIs in separate processes. Pylint warnings -about re-imports should be ignored. +Starts both the EC2 and OpenStack APIs in separate processes. """ -# pylint: disable=W0404 - import sys import multiprocessing diff --git a/nova/tests/integrated/integrated_helpers.py b/nova/tests/integrated/integrated_helpers.py index ba6bef62f..8809bf5f8 100644 --- a/nova/tests/integrated/integrated_helpers.py +++ b/nova/tests/integrated/integrated_helpers.py @@ -171,9 +171,6 @@ class _IntegratedTestBase(test.TestCase): self.api = self.user.openstack_api def _start_api_service(self): - #ec2 = service.WSGIService("ec2") - #ec2.start() - osapi = service.WSGIService("osapi") osapi.start() @@ -1,6 +1,3 @@ -[develop] -user = True - [build_sphinx] all_files = 1 build-dir = doc/build |
