From: Willy Tarreau Date: Mon, 23 Mar 2026 06:29:43 +0000 (+0100) Subject: BUILD: sched: fix leftover of debugging test in single-run changes X-Git-Tag: v3.4-dev8~148 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ff7b06badb4d39cf7f8f054e26c2f31154e5850d;p=thirdparty%2Fhaproxy.git BUILD: sched: fix leftover of debugging test in single-run changes 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 :-( --- diff --git a/src/task.c b/src/task.c index 552a0df25..1cf9b6d3c 100644 --- a/src/task.c +++ b/src/task.c @@ -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;