madd0/AzureStorageDriver

Connections don't work at all

jtheisen opened this issue · 1 comments

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 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;