Ensure 'WSGIService' derives from oslo_service base class

Currently this code will fail due to an isinstance check in
oslo_service that ensures that the services launched are of
the right type.

Closes-Bug: #1468559

Change-Id: I71acc5082aacbfb66d422cec6636ba44ae2c8402
This commit is contained in:
Joshua Harlow 2015-06-24 17:54:40 -07:00
parent f7d2112c00
commit dc9a8c8f5d
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ class Service(service.Service):
LOG.exception(_LE('DBError encountered: '))
class WSGIService(object):
class WSGIService(service.ServiceBase):
"""Provides ability to launch API from a 'paste' configuration."""
def __init__(self, name, loader=None):