Skip to content

Commit

Permalink
HCK-8640: Incorrect parsing of NamedInstance from connection string (#…
Browse files Browse the repository at this point in the history
…118)

* HCK-8640: Incorrect parsing of NamedInstance from connection string

* fix

* fix
  • Loading branch information
AlikRakhmonov authored Nov 15, 2024
1 parent 874ff0f commit c2901fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reverse_engineering/helpers/parseConnectionString.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const parseBasicString = ({ string = '' }) => {

return {
host: host,
port: parsed.port,
port: host.includes('\\') ? null : parsed.port,
databaseName: parsed.database,
userName: parsed.user,
userPassword: parsed.password,
Expand Down

0 comments on commit c2901fd

Please sign in to comment.