diff options
Diffstat (limited to 'openstack/common')
| -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): |
