Guo Jiwei created TUBEMQ-61:
-------------------------------
Summary: minor update & fix some typos
Key: TUBEMQ-61
URL: https://issues.apache.org/jira/browse/TUBEMQ-61
Project: Apache TubeMQ
Issue Type: Improvement
Reporter: Guo Jiwei
1. RoundRobinPartitionRouter
change
```
if (roundPartition != null) {
if (roundPartition.getDelayTimeStamp() < System.currentTimeMillis()) {
return roundPartition;
}
}
```
to
```
if (roundPartition != null && roundPartition.getDelayTimeStamp() <
System.currentTimeMillis()) {
return roundPartition;
}
```
2. DefaultBrokerRcvQltyStats
fix below typos:
```
brokerStatis -> brokerStats
lastPrinttime -> lastPrintTime
cachedLinkQualitys -> cachedLinkQualities
curStatisItemSet -> curStatsItemSet
needHoldCout -> needHoldCount
```
--
This message was sent by Atlassian Jira
(v8.3.4#803005)