32150c643e
Instead of specifying a custom location for the Marconi configuration file through Paste, just use the defaults as specified by our config module. Change-Id: Ia01e262e298f953412a36c75614c7656c3105db1 Implements: blueprint config-module
25 lines
772 B
Python
25 lines
772 B
Python
# Copyright (c) 2013 Rackspace, Inc.
|
|
#
|
|
# 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.
|
|
|
|
import marconi
|
|
|
|
|
|
class WSGI(object):
|
|
@staticmethod
|
|
def app_factory(global_config, **local_config):
|
|
bootstrap = marconi.Bootstrap()
|
|
|
|
return bootstrap.transport.app
|