michael81877 commented on code in PR #6506:
URL: https://github.com/apache/nifi/pull/6506#discussion_r991917936
##########
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ControlRate.java:
##########
@@ -211,16 +241,37 @@ public void onPropertyModified(final PropertyDescriptor
descriptor, final String
|| descriptor.equals(GROUPING_ATTRIBUTE_NAME)
|| descriptor.equals(TIME_PERIOD)) {
// if the criteria that is being used to determine
limits/throttles is changed, we must clear our throttle map.
- throttleMap.clear();
- } else if (descriptor.equals(MAX_RATE)) {
+ dataThrottleMap.clear();
+ countThrottleMap.clear();
+ } else if (descriptor.equals(MAX_RATE) ||
descriptor.equals(MAX_DATA_RATE)) {
+ // MAX_RATE could affect eitehr throttle map; MAX_DATA_RATE only
affects data throttle map
Review Comment:
```suggestion
// MAX_RATE could affect either throttle map; MAX_DATA_RATE only
affects data throttle map
```
--
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]