mirror of https://github.com/apache/lucene.git
Add spaces
This commit is contained in:
parent
108381766a
commit
8d0506e962
|
@ -187,11 +187,11 @@ public class ZookeeperStatusHandler extends RequestHandlerBase {
|
||||||
List<String> errors = new ArrayList<>();
|
List<String> errors = new ArrayList<>();
|
||||||
obj.put("host", zkHostPort);
|
obj.put("host", zkHostPort);
|
||||||
List<String> lines = getZkRawResponse(zkHostPort, "ruok");
|
List<String> lines = getZkRawResponse(zkHostPort, "ruok");
|
||||||
validateZkRawResponse(lines, zkHostPort,"ruok");
|
validateZkRawResponse(lines, zkHostPort, "ruok");
|
||||||
boolean ok = "imok".equals(lines.get(0));
|
boolean ok = "imok".equals(lines.get(0));
|
||||||
obj.put("ok", ok);
|
obj.put("ok", ok);
|
||||||
lines = getZkRawResponse(zkHostPort, "mntr");
|
lines = getZkRawResponse(zkHostPort, "mntr");
|
||||||
validateZkRawResponse(lines, zkHostPort,"mntr");
|
validateZkRawResponse(lines, zkHostPort, "mntr");
|
||||||
for (String line : lines) {
|
for (String line : lines) {
|
||||||
String[] parts = line.split("\t");
|
String[] parts = line.split("\t");
|
||||||
if (parts.length >= 2) {
|
if (parts.length >= 2) {
|
||||||
|
@ -203,7 +203,7 @@ public class ZookeeperStatusHandler extends RequestHandlerBase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
lines = getZkRawResponse(zkHostPort, "conf");
|
lines = getZkRawResponse(zkHostPort, "conf");
|
||||||
validateZkRawResponse(lines, zkHostPort,"conf");
|
validateZkRawResponse(lines, zkHostPort, "conf");
|
||||||
for (String line : lines) {
|
for (String line : lines) {
|
||||||
String[] parts = line.split("=");
|
String[] parts = line.split("=");
|
||||||
if (parts.length >= 2) {
|
if (parts.length >= 2) {
|
||||||
|
|
Loading…
Reference in New Issue