gong commented on code in PR #17646:
URL: https://github.com/apache/iceberg/pull/17646#discussion_r3793805888
##########
core/src/main/java/org/apache/iceberg/rest/HTTPClient.java:
##########
@@ -313,7 +313,7 @@ protected <T extends RESTResponse> T execute(
String encodedBody = req.encodedBody();
if (encodedBody != null) {
- request.setEntity(new StringEntity(encodedBody));
+ request.setEntity(new StringEntity(encodedBody, StandardCharsets.UTF_8));
Review Comment:
I add StandardCharsets.UTF_8 for KafkaConnectUtils.
--
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]