You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parse connection string by splitting on first = (#622)
* Parse connection string by splitting on first =
Certain parameters may contain more than one = sign in the string, for
example the SharedAccessSignature.
This allows a connection string as follows:
AccountName=guywald;SharedAccessSignature=se=2036-01-01&sp=acw&sv=2018-11-09&sr=c&sig=c2lnbmF0dXJlCg%3D%3D
To be parsed correctly into its component pieces:
AccountName: guywald
SharedAccessSignature: AccountName=guywald;SharedAccessSignature=se=2036-01-01&sp=acw&sv=2018-11-09&sr=c&sig=c2lnbmF0dXJlCg%3D%3D
Previously it would get truncated as:
SharedAccessSignature: se
* Make sure to trim the key/value before use
0 commit comments