From 66ccfbd8a16190b88fd158d66a595363d46a6153 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Tue, 9 Dec 2025 10:09:01 +0100 Subject: [PATCH] Fix release benchmark with multiple collectors --- collector/src/bin/collector.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/collector/src/bin/collector.rs b/collector/src/bin/collector.rs index 94912e2ac..880105198 100644 --- a/collector/src/bin/collector.rs +++ b/collector/src/bin/collector.rs @@ -1749,6 +1749,10 @@ async fn run_benchmark_job( "Cannot prepare benchmark configs: {error:?}" )) })?; + if compile_config.is_none() && runtime_config.is_none() { + log::warn!("Nothing to benchmark"); + return Ok(()); + } let shared = SharedBenchmarkConfig { artifact_id,