diff options
| author | Kiall Mac Innes <kiall@managedit.ie> | 2012-10-14 17:42:00 +0100 |
|---|---|---|
| committer | Kiall Mac Innes <kiall@managedit.ie> | 2012-10-14 17:42:34 +0100 |
| commit | 34e20feb38a0d0866c6b469043a005b39daa8211 (patch) | |
| tree | 8d3f563c8b343483a999102ef3bd5bdb69ca1c7e /openstack | |
| parent | f182936be1467355e11490726d1b78b928d8d2d0 (diff) | |
| download | oslo-34e20feb38a0d0866c6b469043a005b39daa8211.tar.gz oslo-34e20feb38a0d0866c6b469043a005b39daa8211.tar.xz oslo-34e20feb38a0d0866c6b469043a005b39daa8211.zip | |
Fix WSGI Service init's call to incorrect super method
Change-Id: I7554beefafc409a5504b3e33ac31b4394fe46533
Diffstat (limited to 'openstack')
| -rw-r--r-- | openstack/common/wsgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/wsgi.py b/openstack/common/wsgi.py index a8d6322..52133a8 100644 --- a/openstack/common/wsgi.py +++ b/openstack/common/wsgi.py @@ -56,7 +56,7 @@ class Service(service.Service): """ def __init__(self, threads=1000): - super(Service, self).start() + super(Service, self).__init__() self.pool = eventlet.GreenPool(threads) def start(self, application, port, host='0.0.0.0', backlog=128): |
