mirror of https://github.com/peter4431/rq.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
373 B
Python
11 lines
373 B
Python
DEFAULT_JOB_CLASS = 'rq.job.Job'
|
|
DEFAULT_QUEUE_CLASS = 'rq.Queue'
|
|
DEFAULT_WORKER_CLASS = 'rq.Worker'
|
|
DEFAULT_CONNECTION_CLASS = 'redis.Redis'
|
|
DEFAULT_WORKER_TTL = 420
|
|
DEFAULT_JOB_MONITORING_INTERVAL = 30
|
|
DEFAULT_RESULT_TTL = 500
|
|
DEFAULT_FAILURE_TTL = 31536000 # 1 year in seconds
|
|
DEFAULT_LOGGING_DATE_FORMAT = '%H:%M:%S'
|
|
DEFAULT_LOGGING_FORMAT = '%(asctime)s %(message)s'
|