Open wwlorey opened 4 years ago
Thanks for bring this up! Will take an investigation.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Which service(blob, file, queue, table) does this issue concern?
Blob
Which version of the Azurite was used?
v3.9.0
Where do you get Azurite? (npm, DockerHub, NuGet, Visual Studio Code Extension)
VS Code extension
What's the Node.js version?
v10.16.3
What problem was encountered?
In Azurite,
listBlobsByHierarchy
attempts to list a directory and its contents when the directory is loaded. Azure lists only the top level directory until that directory's contents are explicitly loaded.Steps to reproduce the issue?
listBlobsByHierarchy
for each container with a max page size of 50.responseValue.segment.blobPrefixes
. But the continuation token for Azurite does not match Azure.And
(await response.next()).done
is false in both cases.Have you found a mitigation/solution?
N/A