Praveenkumar76 commented on issue #25323: URL: https://github.com/apache/pulsar/issues/25323#issuecomment-4343834279
@Crispy-fried-chicken ! URLEncoder isn’t suitable here since it encodes spaces as +, which violates RFC 3986 for path segments, instead i’ve used Guava’s UrlEscapers.urlPathSegmentEscaper().escape(), it handles proper encoding (%20, %2F) without adding new dependencies. -- 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]
