Skip to content

Commit

Permalink
ci: fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewhilton committed Nov 19, 2024
1 parent 30b404a commit 876ca6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/task/trigger_update_object_tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function execute() {
$maxtoschedule = get_config('tool_objectfs', 'maxtaggingtaskstospawn');
$toschedule = max(0, $maxtoschedule - $alreadyexist);

for($i = 0; $i < $toschedule; $i++) {
for ($i = 0; $i < $toschedule; $i++) {
// Queue adhoc task, nothing else.
$task = new update_object_tags();
$task->set_custom_data([
Expand Down

0 comments on commit 876ca6c

Please sign in to comment.