We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca84423 commit d3091f2Copy full SHA for d3091f2
1 file changed
rust/src/graph/builder/mod.rs
@@ -47,8 +47,8 @@ pub fn build_graph(
47
48
// Create channels for communication
49
// This way we can start parsing moduels while we're still discovering them.
50
- let (found_module_sender, found_module_receiver) = channel::bounded(10000);
51
- let (parsed_module_sender, parser_module_receiver) = channel::bounded(10000);
+ let (found_module_sender, found_module_receiver) = channel::bounded(1000);
+ let (parsed_module_sender, parser_module_receiver) = channel::bounded(1000);
52
let (error_sender, error_receiver) = channel::bounded(1);
53
54
let mut thread_handles = Vec::new();
0 commit comments