Skip to content

Commit

Permalink
feat: Avoiding the mesh (#410)
Browse files Browse the repository at this point in the history
* first commit

Co-authored-by: Peter Vlugter <pvlugter@users.noreply.github.com>
  • Loading branch information
franciscolopezsancho and pvlugter authored Aug 23, 2022
1 parent 7301ca7 commit 1827eeb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sdk/src/kalix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,8 @@ export class Kalix {
proxyInfo.internalProxyHostname ?? proxyInfo.proxyHostname,
proxyPort:
this.proxyPort ??
(proxyInfo.proxyHostname == 'localhost' ? 9000 : 80),
(proxyInfo.proxyPort ||
(proxyInfo.proxyHostname == 'localhost' ? 9000 : 80)),
identificationInfo: proxyInfo.identificationInfo || undefined,
};

Expand Down

0 comments on commit 1827eeb

Please sign in to comment.