mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-05-14 10:43:56 +00:00
25 lines
571 B
Python
25 lines
571 B
Python
from __future__ import unicode_literals
|
|
|
|
import os
|
|
import sys
|
|
|
|
from django.apps import AppConfig
|
|
from django.db import close_old_connections
|
|
|
|
|
|
class CommonConfig(AppConfig):
|
|
name = 'common'
|
|
|
|
def ready(self):
|
|
from . import signal_handlers # noqa
|
|
from . import tasks # noqa
|
|
from .signals import django_ready
|
|
|
|
excludes = ['migrate', 'compilemessages', 'makemigrations', 'check']
|
|
for i in excludes:
|
|
if i in sys.argv:
|
|
return
|
|
|
|
django_ready.send(CommonConfig)
|
|
close_old_connections()
|