From ff7b06badb4d39cf7f8f054e26c2f31154e5850d Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Mon, 23 Mar 2026 07:29:43 +0100 Subject: [PATCH] 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 :-( --- src/task.c | 1 - 1 file changed, 1 deletion(-) 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;