-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[Storage] JS does not support all connection strings supported by .NET #5081
Comments
Thanks, Mike. And the Development Connection String support is currently being added - #5004 We need to have a discussion and decide which fields are mandatory. |
@XiaoningLiu do you know where we can find a specification for all the formats of supported connection strings? |
Just like the doc link Harsha pasted https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string#configure-a-connection-string-for-an-azure-storage-account |
I couldn't find any spec on the minimal format
|
@XiaoningLiu, please add support for more kinds of connection strings if required, to be in sync with the .NET sdk. |
If a connection string doesn't mentioned in the doc, it should not be a official standard.
|
@XiaoningLiu Are there any planned next steps here? If not, then can we close this issue? |
I think we can close this. JS already supports short cut connection string for emulator account |
The following connection string works in the latest builds of both .NET and JS:
However, if this is reduced to a more minimal connection string:
It still works in .NET (you can verify with an HTTP debugger like Fiddler), but it fails in JS with:
It appears the JS SDK is more strict about connection string parsing than the .NET SDK. I'm not sure which is more correct or how important this is, but ideally the SDKs would be consistent across languages.
The text was updated successfully, but these errors were encountered: