gortiz commented on code in PR #14951: URL: https://github.com/apache/pinot/pull/14951#discussion_r1942622733
########## pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/PinotQueryResource.java: ########## @@ -398,18 +414,13 @@ private String getQueryURL(String protocol, String hostName, int port) { return String.format("%s://%s:%d/query/sql", protocol, hostName, port); } - public String sendPostRaw(String urlStr, String requestStr, Map<String, String> headers) { + public void sendPostRaw(String urlStr, String requestStr, Map<String, String> headers, OutputStream outputStream) { HttpURLConnection conn = null; try { - /*if (LOG.isInfoEnabled()){ + if (LOGGER.isInfoEnabled()) { LOGGER.info("Sending a post request to the server - " + urlStr); Review Comment: I just uncommented this log. I decided to remove it in https://github.com/apache/pinot/pull/14994 -- 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