We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After creating a connection with this driver, the connection appears in red in the connection list with this identifier:
(Error: String was not recognized as a valid Boolean.)
It doesn't matter if I provider correct credentials or fake values.
I'm using LinqPad 4.45.05. I don't know how to see the AzureStorageDriver version, but I installed it yesterday from within LinqPad.
The text was updated successfully, but these errors were encountered:
The workaround is to delete and recreate the connection.
The bug is in StorageAccountProperties.cs. The UseHttps property get accessor should be replaced with this:
return (bool?)this._driverData.Element ("UseHttps") ?? false;
and UseLocalStorage should be:
return (bool?)this._driverData.Element ("UseLocalStorage") ?? false;
Sorry, something went wrong.
f58af1c
madd0
No branches or pull requests
After creating a connection with this driver, the connection appears in red in the connection list with this identifier:
(Error: String was not recognized as a valid Boolean.)
It doesn't matter if I provider correct credentials or fake values.
I'm using LinqPad 4.45.05. I don't know how to see the AzureStorageDriver version, but I installed it yesterday from within LinqPad.
The text was updated successfully, but these errors were encountered: