Reputation: 492
I'm using Microsoft Azure Storage Explorer 1.7.0 on macOS 10.14.4 for local development on an Azure function. After attaching to a local emulator the Queues, Blob Containers and Tables are stuck "Loading...".
Steps to Reproduce
Fill in fields then click Next.
Click Connect.
Unable to retrieve child resources.
Details: A network error occurred (NetworkTimeoutError: connect ECONNREFUSED 127.0.0.1:10002)
It is also not possible to add a new Queue while it is stuck loading. Right click Queues > Create Queue, then type a queue name and press return does not show the new queue in the list.
What I see in the app:
Upvotes: 1
Views: 3059
Reputation: 7189
Had similar issue with Azure Storage Explore
on Ubuntu
22.04, it wasn't recognizing the running Azurite
services started from the VSCode Azurite: Start Queue Service
. For me it was resolved by executing next command from bash
azurite-queue --silent
Upvotes: 0
Reputation: 2268
The easiest way to fix it is to install Azurite plugin on VSCode and run 'Azurite Start Blob Service' from the command pallet.
Upvotes: 0
Reputation: 136146
To use Storage Emulator
on Mac (or Linux), please ensure that Azurite
is installed.
You can read more about the emulator support in Storage Explorer here: https://learn.microsoft.com/en-us/azure/vs-azure-tools-storage-manage-with-storage-explorer?tabs=macos#work-with-local-development-storage.
Upvotes: 2