Skip to content

Commit 1335414

Browse files
authored
Merge pull request #558 from didi/master
合并主分支
2 parents 0b376bd + 2de2771 commit 1335414

File tree

2 files changed

+3
-2
lines changed
  • km-common/src/main/java/com/xiaojukeji/know/streaming/km/common/bean/entity/broker
  • km-console/packages/layout-clusters-fe

2 files changed

+3
-2
lines changed

km-common/src/main/java/com/xiaojukeji/know/streaming/km/common/bean/entity/broker/Broker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public String getJmxHost(String endPoint) {
111111
return host;
112112
}
113113
IpPortData ip = endpointMap.get(endPoint);
114-
return ip == null ? ip.getIp() : host;
114+
return ip != null ? ip.getIp() : host;
115115
}
116116

117117
public boolean alive() {

km-console/packages/layout-clusters-fe/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@
5959
"single-spa": "5.9.3",
6060
"single-spa-react": "2.14.0",
6161
"webpack-bundle-analyzer": "^4.5.0",
62-
"knowdesign": "1.3.7"
62+
"knowdesign": "1.3.7",
63+
"tree-changes": "0.9.1"
6364
},
6465
"devDependencies": {
6566
"@babel/core": "^7.5.5",

0 commit comments

Comments
 (0)