Skip to content

Commit

Permalink
Fix incorrect parameter order
Browse files Browse the repository at this point in the history
internal/external addresses were flipped.
  • Loading branch information
gofly authored and martint committed Mar 20, 2018
1 parent 04c5ad2 commit fc2fa98
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -71,8 +71,8 @@ public NodeStatus getStatus()
environment,
coordinator,
nanosSince(startTime),
nodeInfo.getInternalAddress(),
nodeInfo.getExternalAddress(),
nodeInfo.getInternalAddress(),
memoryManager.getInfo(),
logicalCores,
operatingSystemMXBean == null ? 0 : operatingSystemMXBean.getProcessCpuLoad(),
Expand Down

0 comments on commit fc2fa98

Please sign in to comment.