mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-19 02:48:16 +08:00
50 lines
972 B
Python
50 lines
972 B
Python
from multiprocessing import cpu_count
|
|
|
|
from django.apps import AppConfig
|
|
from django.conf import settings
|
|
|
|
|
|
class SessionAdminConfig(AppConfig):
|
|
name = 'django_q'
|
|
verbose_name = "Django Q"
|
|
|
|
|
|
"""
|
|
Sets the logging level for the app
|
|
"""
|
|
try:
|
|
LOG_LEVEL = settings.Q_LOG_LEVEL
|
|
except AttributeError:
|
|
LOG_LEVEL = "INFO"
|
|
|
|
"""
|
|
Using Django's secret key to sign task packages
|
|
"""
|
|
try:
|
|
SECRET_KEY = settings.SECRET_KEY
|
|
except AttributeError:
|
|
SECRET_KEY = 'omgicantbelieveyoudonthaveasecretkey'
|
|
|
|
"""
|
|
SAVE_LIMIT limits the amount of successful task executions saved to the database.
|
|
Set this to 0 for no limits.
|
|
Failures are not limited.
|
|
"""
|
|
try:
|
|
SAVE_LIMIT = settings.Q_SAVE_LIMIT
|
|
except AttributeError:
|
|
SAVE_LIMIT = 100
|
|
|
|
try:
|
|
WORKERS = settings.Q_WORKERS
|
|
except AttributeError:
|
|
WORKERS = cpu_count()
|
|
|
|
"""
|
|
Turns compression on/off for task packages
|
|
"""
|
|
try:
|
|
COMPRESSED = settings.Q_COMPRESSED
|
|
except AttributeError:
|
|
COMPRESSED = False
|