Skip to content

Commit

Permalink
Merge pull request #558 from didi/master
Browse files Browse the repository at this point in the history
合并主分支
  • Loading branch information
ZQKC authored Sep 5, 2022
2 parents 0b376bd + 2de2771 commit 1335414
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public String getJmxHost(String endPoint) {
return host;
}
IpPortData ip = endpointMap.get(endPoint);
return ip == null ? ip.getIp() : host;
return ip != null ? ip.getIp() : host;
}

public boolean alive() {
Expand Down
3 changes: 2 additions & 1 deletion km-console/packages/layout-clusters-fe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@
"single-spa": "5.9.3",
"single-spa-react": "2.14.0",
"webpack-bundle-analyzer": "^4.5.0",
"knowdesign": "1.3.7"
"knowdesign": "1.3.7",
"tree-changes": "0.9.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
Expand Down

0 comments on commit 1335414

Please sign in to comment.