Skip to content
Snippets Groups Projects
Commit 2a031d84 authored by Lukas Niestroj's avatar Lukas Niestroj Committed by Christian Kuhn
Browse files

[BUGFIX] Prevent method call on invalid task in scheduler

Resolves: #94355
Releases: master, 10.4
Change-Id: Ibff208cf5e2165664a8e03952d207ece76be31e3
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/69715


Tested-by: default avatarJochen <rothjochen@gmail.com>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarJochen <rothjochen@gmail.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent c19c11c0
Branches
Tags
No related merge requests found
......@@ -355,13 +355,13 @@ class Scheduler implements SingletonInterface, LoggerAwareInterface
}
/** @var Task\AbstractTask $task */
$task = unserialize($row['serialized_task_object']);
if ($task->getTaskGroup() === null) {
// Fix invalid task_group=NULL settings in order to avoid exceptions when saving on PostgreSQL
$task->setTaskGroup(0);
}
if ($this->isValidTaskObject($task)) {
// The task is valid, return it
$task->setScheduler();
if ($task->getTaskGroup() === null) {
// Fix invalid task_group=NULL settings in order to avoid exceptions when saving on PostgreSQL
$task->setTaskGroup(0);
}
} else {
// Forcibly set the disable flag to 1 in the database,
// so that the task does not come up again and again for execution
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment