diff --git a/HISTORY.rst b/HISTORY.rst index 680f834ec8..1bd0696436 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,9 @@ Thanks to Christoph Roeder (@brightdroid) for the report. * Fix document parsing tool view typo. Closes GitLab issue #615. Thanks to Tyler Page (@iamtpage) for the report. +* Update the task_check_interval_source reference + GitLab issue #617. Thanks to Lukas Gill (@lukkigi) for + the report and debug information. 3.2.1 (2019-06-14) ================== diff --git a/docs/releases/3.2.2.rst b/docs/releases/3.2.2.rst index ffa538c459..20bcfb7b36 100644 --- a/docs/releases/3.2.2.rst +++ b/docs/releases/3.2.2.rst @@ -1,7 +1,7 @@ Version 3.2.2 ============= -Released: June 17, 2019 +Released: June XX, 2019 Changes @@ -11,6 +11,9 @@ Changes Thanks to Christoph Roeder (@brightdroid) for the report. - Fix document parsing tool view typo. Closes GitLab issue #615. Thanks to Tyler Page (@iamtpage) for the report. +- Update the task_check_interval_source reference + GitLab issue #617. Thanks to Lukas Gill (@lukkigi) for + the report and debug information. Removals -------- diff --git a/mayan/apps/sources/models/base.py b/mayan/apps/sources/models/base.py index aa87a4efae..bcca608256 100644 --- a/mayan/apps/sources/models/base.py +++ b/mayan/apps/sources/models/base.py @@ -234,7 +234,7 @@ class IntervalBaseModel(OutOfProcessSource): PeriodicTask.objects.create( name=self._get_periodic_task_name(), interval=interval_instance, - task='sources.tasks.task_check_interval_source', + task='mayan.apps.sources.tasks.task_check_interval_source', kwargs=json.dumps({'source_id': self.pk}) )