You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tubemq.apache.org by "Guocheng Zhang (Jira)" <ji...@apache.org> on 2020/05/13 07:00:00 UTC

[jira] [Updated] (TUBEMQ-61) minor update & fix some typos

     [ https://issues.apache.org/jira/browse/TUBEMQ-61?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Guocheng Zhang updated TUBEMQ-61:
---------------------------------
    Fix Version/s: 0.5.0

> 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
>            Assignee: Guo Jiwei
>            Priority: Low
>              Labels: pull-request-available
>             Fix For: 0.5.0
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> 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)