We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22bd2ae commit 001d070Copy full SHA for 001d070
src/config/unit_test/mod.rs
@@ -448,6 +448,13 @@ async fn build_unit_test(
448
.filter(|(key, _)| valid_components.contains(&key.to_string()))
449
.collect();
450
451
+ // Remove all enrichment tables that are not relevant to the current test
452
+ config_builder.enrichment_tables = config_builder
453
+ .enrichment_tables
454
+ .into_iter()
455
+ .filter(|(key, _)| valid_components.contains(&key.to_string()))
456
+ .collect();
457
+
458
// Sanitize the inputs of all relevant transforms
459
let graph = Graph::new_unchecked(
460
&config_builder.sources,
0 commit comments