Debugging into blobTransport.js, my containerName and blobName are set, the resolver is just returning undefined.
Workaround
I was able to solve the issue by passing in nameResolver: { getBlobName: () => 'Test Blob' } instead of blobName: 'Test Blob'. Is this the correct way to use the API, and if so, should the examples be updated?
I just upgraded from 0.2.4 to the new 0.2.9 and I'm getting this error:
Required argument blob for function getBlobProperties is not defined
I've narrowed down the issue to being introduced in 0.2.5 in commit 04de52de37b9651a9e10bff602e974660db0fdaa.
Here is my logger constructor, can you see any issues? I'm running NPM 6.4.1 and Node 8.4.0.
Debugging into
blobTransport.js
, mycontainerName
andblobName
are set, the resolver is just returningundefined
.Workaround I was able to solve the issue by passing in
nameResolver: { getBlobName: () => 'Test Blob' }
instead ofblobName: 'Test Blob'
. Is this the correct way to use the API, and if so, should the examples be updated?