Skip to content

Commit

Permalink
Fixes from changes to GRPCServer
Browse files Browse the repository at this point in the history
  • Loading branch information
emmacasolin committed Mar 14, 2022
1 parent c034d12 commit b6a7459
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/bin/agent/CommandStart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,10 @@ class CommandStart extends CommandPolykey {
statusLiveData = {
pid: process.pid,
nodeId: nodesUtils.encodeNodeId(pkAgent.keyManager.getNodeId()),
clientHost: pkAgent.grpcServerClient.host,
clientPort: pkAgent.grpcServerClient.port,
agentHost: pkAgent.grpcServerAgent.host,
agentPort: pkAgent.grpcServerAgent.port,
clientHost: pkAgent.grpcServerClient.getHost(),
clientPort: pkAgent.grpcServerClient.getPort(),
agentHost: pkAgent.grpcServerAgent.getHost(),
agentPort: pkAgent.grpcServerAgent.getPort(),
proxyHost: pkAgent.fwdProxy.getProxyHost(),
proxyPort: pkAgent.fwdProxy.getProxyPort(),
egressHost: pkAgent.fwdProxy.getEgressHost(),
Expand Down

0 comments on commit b6a7459

Please sign in to comment.