Skip to content
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

Connections don't work at all #4

Closed
jtheisen opened this issue Jul 31, 2013 · 1 comment
Closed

Connections don't work at all #4

jtheisen opened this issue Jul 31, 2013 · 1 comment
Assignees

Comments

@jtheisen
Copy link

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.

@albahari
Copy link

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;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants