fix: include importer_kind in dependency debounce key to prevent cross-kind collisions (#8567)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ruben Fiszel
2026-03-27 16:22:35 +00:00
committed by GitHub
parent 99b0ebd677
commit bc7007bb42

View File

@@ -61,7 +61,7 @@ pub async fn trigger_dependents_to_recompute_dependencies(
);
let mut debouncing_settings = DebouncingSettings {
debounce_key: Some(format!("{w_id}:{importer_path}:dependency")),
debounce_key: Some(format!("{w_id}:{importer_path}:{importer_kind}:dependency")),
debounce_delay_s: Some(5),
..Default::default()
};