Skip to content

Commit 3e73644

Browse files
committed
Add backwards compatibility for loading serialized data
1 parent 5ce336d commit 3e73644

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/serialization.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ function recover(x::Vector)
8484
else
8585
xsi = if fn == "evals_set" && !haskey(fields, fn)
8686
false
87+
elseif fn == "enable_linux_perf" && !haskey(fields, fn)
88+
false
89+
elseif fn == "linux_perf_options" && !haskey(fields, fn)
90+
String[]
8791
else
8892
convert(ft, fields[fn])
8993
end

0 commit comments

Comments
 (0)