Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INLONG-61] minor update & fix some typos #660

Closed
dockerzhang opened this issue Jul 28, 2021 · 0 comments
Closed

[INLONG-61] minor update & fix some typos #660

dockerzhang opened this issue Jul 28, 2021 · 0 comments

Comments

@dockerzhang
Copy link
Contributor

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
```

JIRA link - [INLONG-61] created by technoboy

@dockerzhang dockerzhang added this to the 0.5.0 milestone Jul 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant