mirror of
https://gitlab.cern.ch/wotsubo/PSBoardDataBase.git
synced 2025-06-07 21:45:43 +09:00
update: add excluded list for broken clock measurement (627 344)
This commit is contained in:
parent
b1b67f527e
commit
f3b5547fc5
1 changed files with 10 additions and 0 deletions
|
@ -755,6 +755,16 @@ function add_skew_from_slave_clk_logs(db::SQLite.DB, logs_dir::AbstractString)
|
|||
if m[:psbid] == "630" && m[:runid] == "190"
|
||||
@debug "skipping... (psbid=630 runid=190 is broken)"
|
||||
continue
|
||||
elseif m[:psbid] == "627" && m[:runid] == "344"
|
||||
@debug "skipping... (psbid=627 runid=344 is broken)"
|
||||
continue
|
||||
end
|
||||
|
||||
skew = try
|
||||
ClockParser.get_skew(file)
|
||||
catch e
|
||||
@error "Failed to parse clock skew: psbid: $(m[:psbid]), runid: $(m[:runid])" file
|
||||
throw(e)
|
||||
end
|
||||
|
||||
DBInterface.execute(
|
||||
|
|
Loading…
Add table
Reference in a new issue