From 35b437bda89fdb5701a8cb92c198ca7dfc966cb0 Mon Sep 17 00:00:00 2001 From: Johannes Terblanche Date: Wed, 12 Aug 2020 15:33:32 +0200 Subject: [PATCH] Split DistributedFactorGraphs.BlobStoreEntry --- src/services/Serialization.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/services/Serialization.jl b/src/services/Serialization.jl index 93ffc138..54a80c03 100644 --- a/src/services/Serialization.jl +++ b/src/services/Serialization.jl @@ -108,6 +108,9 @@ function unpackVariable(dfg::G, dataElemTypes = JSON2.read(packedProps["bigDataElemType"], Dict{Symbol, Symbol}) else dataElemTypes = JSON2.read(packedProps["dataEntryType"], Dict{Symbol, Symbol}) + for (k,name) in dataElemTypes + dataElemTypes[k] = Symbol(split(string(name), '.')[end]) + end end #TODO Deprecate - for backward compatibility between v0.8 and v0.9, remove in v0.10