File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1389,7 +1389,9 @@ Make sure to modify `{dir}/perf-config.json` if the category/artifact don't matc
1389
1389
let collector_config = rt
1390
1390
. block_on ( conn. start_collector ( & collector_name, & git_sha) ) ?
1391
1391
. ok_or_else ( || {
1392
- anyhow:: anyhow!( "Collector with name `{collector_name}` not found" )
1392
+ anyhow:: anyhow!(
1393
+ "No active collector with the name `{collector_name}` not found"
1394
+ )
1393
1395
} ) ?;
1394
1396
1395
1397
if collector_config. target ( ) . as_str ( ) != host_target_tuple {
Original file line number Diff line number Diff line change @@ -1816,7 +1816,8 @@ where
1816
1816
last_heartbeat_at = NOW(),
1817
1817
commit_sha = $2
1818
1818
WHERE
1819
- name = $1
1819
+ name = $1 AND
1820
+ is_active = true
1820
1821
RETURNING
1821
1822
target,
1822
1823
benchmark_set,
You can’t perform that action at this time.
0 commit comments