Skip to content

Commit

Permalink
Fix | Fix issue connecting with instance name from Unix environment (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
cheenamalhotra committed Jan 12, 2021
1 parent 661b640 commit 45a6696
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ private bool InferConnectionDetails()

int commaIndex = _dataSourceAfterTrimmingProtocol.IndexOf(CommaSeparator);

int backSlashIndex = _dataSourceAfterTrimmingProtocol.IndexOf(PipeBeginning);
int backSlashIndex = _dataSourceAfterTrimmingProtocol.IndexOf(BackSlashCharacter);

// Check the parameters. The parameters are Comma separated in the Data Source. The parameter we really care about is the port
// If Comma exists, the try to get the port number
Expand Down

0 comments on commit 45a6696

Please sign in to comment.