Skip to content

Commit

Permalink
Revert "does instance name caues the build to fail?"
Browse files Browse the repository at this point in the history
This reverts commit 12af235.
  • Loading branch information
TPVallancourt committed Jan 23, 2025
1 parent 12af235 commit ef04a45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2485,7 +2485,9 @@ class Connection extends EventEmitter {
}

payload.hostname = this.config.options.workstationId || os.hostname();
payload.serverName = this.routingData ? this.routingData.server : this.config.server;
payload.serverName = this.routingData ?
`${this.routingData.server}${this.routingData.instance ? '\\' + this.routingData.instance : ''}` :
this.config.server;
payload.appName = this.config.options.appName || 'Tedious';
payload.libraryName = libraryName;
payload.language = this.config.options.language;
Expand Down

0 comments on commit ef04a45

Please sign in to comment.