-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support UseDevelopmentStorage=true; as connection string #10040
Comments
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @xgithubtriage |
Hi @jongio Thanks for your feedback! We will add this task to our backlog! |
Where does this stand? |
Any update on this topic? |
@xiafu-msft Still lingering in the back log I assume? |
interestingly, according to tests, it should be supported in blob, queue, and tables 🤔 edit: nevermind, it tests that the string raises a ValueError 😅 |
No update in 4 years. What a shame. |
I had a look at the link I posted in my last comment: it should be pretfy straight forward to amend that test: to assert that the client ends up with a proper full conn string. I'm no maintainer but I'm sure that PRs are welcome 👍 |
Hi @jongio, we deeply appreciate your input into this project. Regrettably, this issue has remained inactive for over 2 years, leading us to the decision to close it. We've implemented this policy to maintain the relevance of our issue queue and facilitate easier navigation for new contributors. If you still believe this topic requires attention, please feel free to create a new issue, referencing this one. Thank you for your understanding and ongoing support. |
Describe the bug
We should support local emulation with azure storage explorer and azurite. This was possible in old sdk.
Reported by customer here: https://stackoverflow.com/questions/60437824/blob-storage-connection-to-emulator-local-development-fail
To Reproduce
Run the storage emulator or azurite
Run this code:
You get this exception.
Expected behavior
It should work.
Workaround
Use full connection string:
Related:
#372
#375
It was resolved in old sdk with
is_emulated
flag or EMULATED env variableAzure/azure-storage-python#6
You can view the is_emulated impl here: https://github.com/Azure/azure-storage-python/search?utf8=%E2%9C%93&q=is_emulated&type=
The text was updated successfully, but these errors were encountered: