Skip to content

Commit da53647

Browse files
committed
Hotfix for PPE serialization - these are missing in the cloud v3
1 parent cc8f67f commit da53647

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/Serialization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ function unpackVariable(
221221
end
222222

223223
# FIXME, drop nested packing, see DFG #867
224-
ppeDict = if unpackPPEs && haskey(packedProps,"ppesDict")
224+
ppeDict = if unpackPPEs && haskey(packedProps,"ppeDict")
225225
JSON2.read(packedProps["ppeDict"], Dict{Symbol, MeanMaxPPE})
226226
elseif unpackPPEs && haskey(packedProps,"ppes") && packedProps["ppes"] isa AbstractVector
227227
# these different cases are not well covered in tests, but first fix #867

0 commit comments

Comments
 (0)