Skip to content
Snippets Groups Projects
Commit 08295e09 authored by Stefanos Karasavvidis's avatar Stefanos Karasavvidis Committed by Anja Leichsenring
Browse files

[BUGFIX] Use proper exception messages for Scheduler::fetchTask()

Use a proper message in case a non existent uid was passed and
correctly handle the case where no task uid was passed and no task
is overdue.

Resolves: #87375
Releases: master, 9.5, 8.7
Change-Id: I69d2798cc185451c889bf37d8a007eacf572c163
Reviewed-on: https://review.typo3.org/59385


Reviewed-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
Tested-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
Tested-by: default avatarTYPO3com <noreply@typo3.com>
Reviewed-by: default avatarFabien Udriot <fabien.udriot@ecodev.ch>
Tested-by: default avatarFabien Udriot <fabien.udriot@ecodev.ch>
Reviewed-by: default avatarSusanne Moog <susanne.moog@typo3.org>
Tested-by: default avatarSusanne Moog <susanne.moog@typo3.org>
Reviewed-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
parent e0646bd4
Branches
Tags
No related merge requests found
......@@ -334,12 +334,13 @@ class Scheduler implements SingletonInterface, LoggerAwareInterface
}
$row = $queryBuilder->execute()->fetch();
if ($row === false) {
throw new \OutOfBoundsException('Query could not be executed. Possible defect in tables tx_scheduler_task or tx_scheduler_task_group or DB server problems', 1422044826);
}
if (empty($row)) {
// If there are no available tasks, thrown an exception
throw new \OutOfBoundsException('No task', 1247827244);
if (empty($uid)) {
// No uid was passed and no overdue task was found
throw new \OutOfBoundsException('No tasks available for execution', 1247827244);
}
// Although a uid was passed, no task with given was found
throw new \OutOfBoundsException('No task with id ' . $uid . ' found', 1422044826);
}
/** @var Task\AbstractTask $task */
$task = unserialize($row['serialized_task_object']);
......
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