BUILD: sched: fix leftover of debugging test in single-run changes
Some checks are pending
Contrib / build (push) Waiting to run
alpine/musl / gcc (push) Waiting to run
VTest / Generate Build Matrix (push) Waiting to run
VTest / (push) Blocked by required conditions
Windows / Windows, gcc, all features (push) Waiting to run

There was a leftover of "activity[tid].ctr1++" in commit 7d40b3134
("MEDIUM: sched: do not run a same task multiple times in series")
that unfortunately only builds in development mode :-(
This commit is contained in:
Willy Tarreau 2026-03-23 07:29:43 +01:00
parent 5d0f5f8168
commit ff7b06badb

View file

@ -565,7 +565,6 @@ unsigned int run_tasks_from_lists(unsigned int budgets[])
/* check if this task has already run during this loop */
if ((uint16_t)t->last_run == (uint16_t)activity[tid].loops) {
activity[tid].ctr1++;
budget_mask &= ~(1 << queue);
queue++;
continue;