We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6b0a92 commit d961e27Copy full SHA for d961e27
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/EsqlListQueriesResponse.java
@@ -51,11 +51,13 @@ public void writeTo(StreamOutput out) throws IOException {
51
52
@Override
53
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
54
+ builder.startObject();
55
builder.startObject("queries");
56
// for (Query query : queries) {
57
// query.toXContent(builder, params);
58
// }
59
builder.endObject();
60
+ builder.endObject();
61
return builder;
62
}
63
0 commit comments