mirror of
https://gitlab.cern.ch/wotsubo/PSBoardDataBase.git
synced 2025-07-02 09:39:24 +09:00
update(DispatchChecker): print result sorted by runid
This commit is contained in:
parent
dfde25a8dc
commit
d824f2c938
2 changed files with 14 additions and 3 deletions
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
- Renamed `create_database_from_exported_csvs` to `create_database` and `create_database` to `create_empty_database`. (!1423)
|
- Renamed `create_database_from_exported_csvs` to `create_database` and `create_database` to `create_empty_database`. (!1423)
|
||||||
- Exported `create_database`
|
- Exported `create_database`
|
||||||
|
- In `DispatchChecker.interactive_dispatch_checker`, printed results are now sorted by runid.
|
||||||
|
|
||||||
## [0.5.1] - 2025-01-23
|
## [0.5.1] - 2025-01-23
|
||||||
|
|
||||||
|
|
|
@ -114,9 +114,19 @@ function is_dispatchable(conn::DbConnection, psbid::Int64)
|
||||||
end
|
end
|
||||||
|
|
||||||
# TODO: not yet implemented
|
# TODO: not yet implemented
|
||||||
@info "results" single_results select(
|
@info "results" sort(single_results, :runid) sort(
|
||||||
extra_results,
|
select(
|
||||||
Not(:id, :num_tests, :dac_is_0, :bcid_fail_111, :bcid_fail_000, :low_efficiency),
|
extra_results,
|
||||||
|
Not(
|
||||||
|
:id,
|
||||||
|
:num_tests,
|
||||||
|
:dac_is_0,
|
||||||
|
:bcid_fail_111,
|
||||||
|
:bcid_fail_000,
|
||||||
|
:low_efficiency,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
:runid,
|
||||||
)
|
)
|
||||||
@debug "results(full)" extra_results
|
@debug "results(full)" extra_results
|
||||||
return missing
|
return missing
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue