Skip to content

Commit 3cf6a20

Browse files
committed
Review, should be warn
1 parent 18c7f3c commit 3cf6a20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DataBlobs/services/BlobStores.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,9 @@ function updateDataBlob!(store::FolderStore{T}, entry::BlobStoreEntry, data::T)
178178
blobfilename = joinpath(store.folder,"$(entry.id).dat")
179179
entryfilename = joinpath(store.folder,"$(entry.id).json")
180180
if !isfile(blobfilename)
181-
error("Key '$(id)' doesn't exist.")
181+
warn("Key '$(id)' doesn't exist.")
182182
elseif !isfile(entryfilename)
183-
error("Key '$(id)' doesn't exist.")
183+
warn("Key '$(id)' doesn't exist.")
184184
else
185185
open(blobfilename, "w") do f
186186
write(f, data)

0 commit comments

Comments
 (0)