mcvsubbu commented on a change in pull request #6667: URL: https://github.com/apache/incubator-pinot/pull/6667#discussion_r602466634
########## File path: pinot-common/src/main/java/org/apache/pinot/common/protocols/SegmentCompletionProtocol.java ########## @@ -180,6 +184,16 @@ private Request(Params params, String msgType) { } public String getUrl(String hostPort, String protocol) { + String streamPartitionMsgOffset; + try { + streamPartitionMsgOffset = _params.getStreamPartitionMsgOffset() == null ? null : + URLEncoder.encode(_params.getStreamPartitionMsgOffset(), StandardCharsets.UTF_8.toString()); Review comment: It makes sense to urlencode, I agree. Check with PRs 4426 and 5639 I think we had a case before where we utl encoded segment name, and it caused some issues -- 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. 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