Skip to content

Commit

Permalink
Fix | Revert back PR dotnet#2281 code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JRahnama committed Mar 7, 2024
1 parent 769b982 commit 64d48a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -653,8 +653,8 @@ private bool InferConnectionDetails()

Port = port;
}
// Instance Name Handling.
if (backSlashIndex > -1)
// Instance Name Handling. Only if we found a '\' and we did not find a port in the Data Source
else if (backSlashIndex > -1)
{
// This means that there is a part separated by '\'
InstanceName = tokensByCommaAndSlash[1].Trim();
Expand Down

0 comments on commit 64d48a3

Please sign in to comment.