Я не могу сохранить задания в базе данных mongodb.
Я пытался добавить 'url': 'mongodb: // localhost / My-db' в хранилище заданий по умолчанию, но он даже не компилируется.
scheduler = BackgroundScheduler({
'apscheduler.jobstores.default': {
'type': 'mongodb'
},
'apscheduler.executors.default': {
'class': 'apscheduler.executors.pool:ThreadPoolExecutor',
'max_workers': '20'
},
'apscheduler.executors.processpool': {
'type': 'processpool',
'max_workers': '5'
},
'apscheduler.job_defaults.coalesce': 'false',
'apscheduler.job_defaults.max_instances': '3',
'apscheduler.timezone': 'UTC',
})