Skip to content
Snippets Groups Projects
Commit f3b5547f authored by Wataru Otsubo's avatar Wataru Otsubo
Browse files

update: add excluded list for broken clock measurement (627 344)

parent b1b67f52
No related branches found
No related tags found
No related merge requests found
Pipeline #9575475 passed
......@@ -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(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment