Add more comments

Original commit: elastic/x-pack-elasticsearch@3be202947b
This commit is contained in:
Costin Leau 2017-09-29 15:21:48 +03:00
parent 1824d4771c
commit f8776b8d43
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public class CliHttpClient implements AutoCloseable {
}
public QueryInitResponse queryInit(String query, int fetchSize) {
// TODO allow customizing the time zone
// TODO allow customizing the time zone - this is what session set/reset/get should be about
QueryInitRequest request = new QueryInitRequest(query, fetchSize, TimeZone.getTimeZone("UTC"), new TimeoutInfo(0, 0, 0));
return (QueryInitResponse) sendRequest(request);
}