Skip to content
Snippets Groups Projects
Commit 6b19a5bf authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Merge branch 'importer-time-configurable' into 'master'

run cron jobs at time specified in settings

See merge request NCER-PD/scheduling-system!236
parents ccc1d9cb d87bc964
No related branches found
No related tags found
1 merge request!236run cron jobs at time specified in settings
Pipeline #25201 passed
...@@ -14,8 +14,8 @@ logger = logging.getLogger(__name__) ...@@ -14,8 +14,8 @@ logger = logging.getLogger(__name__)
class ExporterCronJob(CronJobBase): class ExporterCronJob(CronJobBase):
RUN_EVERY_MINUTES = 60 * 24 RUN_AT_TIMES = getattr(settings, "EXPORT_RUN_AT", ['23:55'])
schedule = Schedule(run_every_mins=RUN_EVERY_MINUTES) schedule = Schedule(run_at_times=RUN_AT_TIMES)
code = 'web.import_daily_job' # a unique code code = 'web.import_daily_job' # a unique code
@timeout_decorator.timeout(CRON_JOB_TIMEOUT) @timeout_decorator.timeout(CRON_JOB_TIMEOUT)
......
...@@ -18,7 +18,7 @@ logger = logging.getLogger(__name__) ...@@ -18,7 +18,7 @@ logger = logging.getLogger(__name__)
class ImporterCronJob(CronJobBase): class ImporterCronJob(CronJobBase):
RUN_AT_TIMES = ['23:55'] RUN_AT_TIMES = getattr(settings, "IMPORT_RUN_AT", ['23:55'])
schedule = Schedule(run_at_times=RUN_AT_TIMES) schedule = Schedule(run_at_times=RUN_AT_TIMES)
code = 'web.import_daily_job' # a unique code code = 'web.import_daily_job' # a unique code
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment