insist777 commented on code in PR #24939:
URL: https://github.com/apache/shardingsphere/pull/24939#discussion_r1155578196
##########
kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/core/ratelimit/TPSJobRateLimitAlgorithm.java:
##########
@@ -39,7 +41,9 @@ public final class TPSJobRateLimitAlgorithm implements
JobRateLimitAlgorithm {
public void init(final Properties props) {
String tpsValue = props.getProperty(TPS_KEY);
if (!Strings.isNullOrEmpty(tpsValue)) {
- tps = Integer.parseInt(tpsValue);
+ int value = Integer.parseInt(tpsValue);
Review Comment:
Thanks, done.
--
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]