File tree Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Original file line number Diff line number Diff line change 57
57
function unpackDFGMetadata (packed:: PackedGraphsDFG )
58
58
commonfields = intersect (fieldnames (GraphsDFG), fieldnames (PackedGraphsDFG))
59
59
60
- # FIXME Deprecate remove in DFG v0.24
61
- # setdiff!(commonfields, [:blobStores])
62
- # blobStores = Dict{Symbol, AbstractBlobstore}()
63
- # !isnothing(packed.blobStores) && merge!(blobStores, packed.blobStores)
64
-
65
60
setdiff! (commonfields, [:blobStores ])
66
61
blobStores = packed. blobStores
67
62
68
- agent = packed. agent
69
- graphBlobEntries = packed. graphBlobEntries
70
- graphMetadata = packed. graphMetadata
71
- graphLabel = packed. graphLabel
72
-
63
+ # TODO add 'CanSerialize' trait to blobstores and also serialize NvaBlobStores
73
64
_isfolderstorepath (s) = false
74
65
_isfolderstorepath (s:: FolderStore ) = ispath (s. folder)
75
66
# FIXME escalate to keyword
@@ -101,10 +92,6 @@ function unpackDFGMetadata(packed::PackedGraphsDFG)
101
92
102
93
return GraphsDFG {typeof(packed.solverParams), VT, FT} (;
103
94
blobStores,
104
- graphBlobEntries,
105
- graphMetadata,
106
- graphLabel,
107
- agent,
108
95
props... ,
109
96
)
110
97
end
You can’t perform that action at this time.
0 commit comments