vivek807 commented on code in PR #16672:
URL: https://github.com/apache/druid/pull/16672#discussion_r1764256892
##########
server/src/main/java/org/apache/druid/server/QueryResultPusher.java:
##########
@@ -54,6 +56,7 @@
public abstract class QueryResultPusher
{
private static final Logger log = new Logger(QueryResultPusher.class);
+ protected static final String RESULT_TRAILER_HEADERS =
QueryResource.ERROR_MESSAGE_TRAILER_HEADER + "," +
QueryResource.RESPONSE_COMPLETE_TRAILER_HEADER;
Review Comment:
Done
##########
server/src/main/java/org/apache/druid/server/QueryResultPusher.java:
##########
@@ -120,7 +125,9 @@ public Response push()
final Response.ResponseBuilder startResponse = resultsWriter.start();
if (startResponse != null) {
- startResponse.header(QueryResource.QUERY_ID_RESPONSE_HEADER, queryId);
+ startResponse.header(QueryResource.QUERY_ID_RESPONSE_HEADER, queryId)
Review Comment:
Done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]