You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a menu item with a single article and make it the default menu (or any other menu item with an id=)
Create a Webcron Link
Execute the Webcron
Expected result
Execution of task(s) due to execution. From the inline help:
By default, requesting this base link will only run tasks due for execution. To execute a specific task, use the task's ID as a query parameter appended to the URL: BASE_URL&id=<taskId>
(Thus the id retrieved from the input in ScheduleRunner::runWebCron should be zero.)
Actual result
The id in runWebCron is set to the id from the menu item, I think it is parseRawRoute adding the id.
So only the tasks matching that ID is executed, if there is any task with that id.
System information (as much as possible)
Additional comments
The problem is resolved by adding a &id=0 to the Webcron Link. Which is a minor inconvenience, but shouldn't that be the default base url??
The text was updated successfully, but these errors were encountered:
Steps to reproduce the issue
Expected result
Execution of task(s) due to execution. From the inline help:
By default, requesting this base link will only run tasks due for execution. To execute a specific task, use the task's ID as a query parameter appended to the URL: BASE_URL&id=<taskId>
(Thus the id retrieved from the input in ScheduleRunner::runWebCron should be zero.)
Actual result
The id in runWebCron is set to the id from the menu item, I think it is parseRawRoute adding the id.
So only the tasks matching that ID is executed, if there is any task with that id.
System information (as much as possible)
Additional comments
The problem is resolved by adding a &id=0 to the Webcron Link. Which is a minor inconvenience, but shouldn't that be the default base url??
The text was updated successfully, but these errors were encountered: