mirror of
https://github.com/ansible/awx.git
synced 2026-01-17 12:41:19 -03:30
refactor existing handlers to be the related "real" handler classes, which are swapped out dynamically by external logger "proxy" handler class real handler swapout only done on setting change remove restart_local_services method get rid of uWSGI fifo file change TCP/UDP return type contract so that it mirrors the request futures object add details to socket error messages
16 lines
364 B
Python
16 lines
364 B
Python
# Django
|
|
from django.apps import AppConfig
|
|
# from django.core import checks
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class ConfConfig(AppConfig):
|
|
|
|
name = 'awx.conf'
|
|
verbose_name = _('Configuration')
|
|
|
|
def ready(self):
|
|
self.module.autodiscover()
|
|
from .settings import SettingsWrapper
|
|
SettingsWrapper.initialize()
|