Skip to content

Commit ce7ff92

Browse files
Affiedehann
andcommitted
Apply suggestions from code review
Co-authored-by: Dehann Fourie <[email protected]>
1 parent 82fabc1 commit ce7ff92

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/DataBlobs/services/BlobEntry.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ end
9494
# or getBlobEntryFirst, btw this returns a vector in some other places
9595
@deprecate getBlobEntry(var::AbstractDFGVariable, key::Regex) getfirstBlobEntry(var, key)
9696

97-
function getfirstBlobEntry(var::AbstractDFGVariable, key::Regex)
97+
function getBlobEntryFirst(var::AbstractDFGVariable, key::Regex)
9898
for (k,v) in var.dataDict
9999
if occursin(key, string(v.label))
100100
return v

src/DataBlobs/services/BlobStores.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function getBlob(dfg::AbstractDFG, entry::BlobEntry)
9898
end
9999
throw(
100100
KeyError(
101-
"could not find $(entry.label), uuid $blobId) in any of the listed blobstores:\n $([s->getKey(s) for (s,v) in stores]))"
101+
"could not find $(entry.label), uuid $(entry.blobId) in any of the listed blobstores:\n $([s->getKey(s) for (s,v) in stores]))"
102102
)
103103
)
104104
end

0 commit comments

Comments
 (0)