Fix project benchmarks build

Piotr Osiewicz created

Change summary

crates/project_benchmarks/src/main.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/project_benchmarks/src/main.rs 🔗

@@ -107,7 +107,7 @@ fn main() -> Result<(), anyhow::Error> {
                     .unwrap();
                 let mut matched_files = 0;
                 let mut matched_chunks = 0;
-                while let Ok(match_result) = matches.recv().await {
+                while let Ok(match_result) = matches.rx.recv().await {
                     if first_match.is_none() {
                         let time = timer.elapsed();
                         first_match = Some(time);