ankitsultana commented on code in PR #12338: URL: https://github.com/apache/pinot/pull/12338#discussion_r1498619033
########## pinot-broker/src/main/java/org/apache/pinot/broker/api/resources/PinotClientRequest.java: ########## @@ -348,4 +349,25 @@ private static HttpRequesterIdentity makeHttpIdentity(org.glassfish.grizzly.http return identity; } + + /** + * Generate Response object from the BrokerResponse object with 'X-Pinot-Error-Code' header value + * @param brokerResponse + * @return Response + * @throws Exception + */ + private static Response getPinotQueryResponse(BrokerResponse brokerResponse) + throws Exception { + int headerValue = -1; // default value of the header. Review Comment: @abhioncbr : can you rename `headerValue` to something more precise? In the context of this PR this makes sense, but generally we may add more headers here later. ########## pinot-broker/src/main/java/org/apache/pinot/broker/api/resources/PinotClientRequest.java: ########## @@ -348,4 +349,25 @@ private static HttpRequesterIdentity makeHttpIdentity(org.glassfish.grizzly.http return identity; } + + /** Review Comment: Can you add test summary in the description? -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org