nodece commented on code in PR #22692:
URL: https://github.com/apache/pulsar/pull/22692#discussion_r1597340567
##########
pulsar-testclient/src/main/java/org/apache/pulsar/testclient/DefaultMessageFormatter.java:
##########
@@ -89,8 +90,7 @@ private String getFloatValue(float size) {
return String.valueOf(r.nextFloat());
}
String format = "%" + size + "f";
-
- return String.format(format, get_FloatValue(size));
+ return String.format(Locale.US, format, get_FloatValue(size));
Review Comment:
I suggest we use the default setting.
--
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]