Skip to content

Commit b1b3892

Browse files
committed
missing line in docs
1 parent 2b12770 commit b1b3892

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/BigData/services/AbstractBigDataEntries.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ mydata = Dict(:soundBite => randn(Float32, 10000), :meta => "something about laz
114114
addDataEntry!( fg, :x0, datastore, :SOUND_DATA, "application/json", Vector{UInt8}(JSON2.write( mydata )) )
115115
116116
# get/fetch the data
117+
entry, rawData = fetchData(fg, :x0, datastore, :SOUND_DATA)
117118
118119
# unpack data to original format (this must be done by the user)
119120
@show entry.mimeType # "applicatio/json"
@@ -126,7 +127,7 @@ addDataEntry!, addData!, fetchData, fetchDataEntryElement
126127
"""
127128
function getDataEntryElement(dfg::AbstractDFG,
128129
dfglabel::Symbol,
129-
datastore::Union{FileDataStore, InMemoryDataStore},
130+
datastore::Union{FileDataStore, InMemoryDataStore},
130131
datalabel::Symbol)
131132
#
132133
vari = getVariable(dfg, dfglabel)

0 commit comments

Comments
 (0)