nova/nova/api/metadata/wsgi.py
Chris Dent bc257f7a23 Add pbr-installed wsgi application for metadata api
Modify the wsgi application for the compute api so that it can be
used by different services and use it for the metadata service,
resulting in a wsgi script named nova-metadata-wsgi.

Change-Id: Icb35fe2b94ab02c0ba8ba8129ae18aae0f794756
2017-05-02 16:58:11 +00:00

21 lines
777 B
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
"""WSGI application entry-point for Nova Metadata API, installed by pbr."""
from nova.api.openstack import wsgi_app
NAME = "metadata"
def init_application():
return wsgi_app.init_application(NAME)