mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Remove logger arguments in all functions and logger attributes in all objects, with the exception of API object logger, which is now deprecated. Replace affected logger calls with module-level logger calls. Reviewed-By: Martin Basti <mbasti@redhat.com>
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
# Authors:
|
|
# Rob Crittenden <rcritten@redhat.com>
|
|
# Jason Gerard DeRose <jderose@redhat.com>
|
|
# John Dennis <jdennis@redhat.com>
|
|
#
|
|
# Copyright (C) 2010 Red Hat
|
|
# see file 'COPYING' for use and warranty information
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
"""
|
|
WSGI appliction for IPA server.
|
|
"""
|
|
import logging
|
|
import os
|
|
|
|
from ipaplatform.paths import paths
|
|
from ipalib import api
|
|
|
|
logger = logging.getLogger(os.path.basename(__file__))
|
|
|
|
api.bootstrap(context='server', confdir=paths.ETC_IPA, log=None)
|
|
try:
|
|
api.finalize()
|
|
except Exception as e:
|
|
logger.error('Failed to start IPA: %s', e)
|
|
else:
|
|
logger.info('*** PROCESS START ***')
|
|
|
|
# This is the WSGI callable:
|
|
def application(environ, start_response):
|
|
if not environ['wsgi.multithread']:
|
|
return api.Backend.wsgi_dispatch(environ, start_response)
|
|
else:
|
|
logger.error("IPA does not work with the threaded MPM, "
|
|
"use the pre-fork MPM")
|