Actions
Bug #56650
closedSeveral Extbase Command Scheduler tasks can not be executed in the same scheduler run
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2014-03-07
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
If you have several extbase command controller commands as scheduler tasks configured to run at the same time, only the first of these is executed.
Reason for this is, that the extbase TaskExecutor is a singleton but has a global state (request and response), which are not reset between commands. Therefore, the request is marked as dispatched after the first command and the second and further commands are not executed.
Actions