Files
Ruben Fiszel daab7e4e05 [ee] fix: ignore arg values in default debounce key
The default debounce key baked all non-accumulated arg values into a
colon-joined suffix, so any varying non-accumulated field (e.g. a
timestamp, a kafka offset, or a msg id present in a preprocessor's
output) silently broke debouncing — every call got a unique key and no
jobs ever collapsed into a single debounced run.

The default key is now just the runnable's fully-qualified path. The
surviving job keeps its own (latest) non-accumulated args, and
debounce_args_to_accumulate is still merged across the batch at pull
time. Users who want per-arg debouncing can still set a custom
debounce_key template (e.g. "pp_$args[region]").

Drops the now-unused args_to_ignore_if_default parameter from
resolve_debounce_key.

Companion: windmill-labs/windmill-ee-private#<pending>

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-15 21:01:29 +00:00
..