Fix toString method
See https://github.com/elastic/elasticsearch/pull/19773#issuecomment-238564524 Was introduced with #18939
This commit is contained in:
parent
d28cc73046
commit
9b10bb7693
|
@ -199,6 +199,6 @@ public class ListTasksResponse extends BaseTasksResponse implements ToXContent {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return Strings.toString(this);
|
return Strings.toString(this, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue