mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-21 16:02:28 +00:00
daab7e4e05
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>