lebron374 commented on a change in pull request #2059:
URL: https://github.com/apache/rocketmq/pull/2059#discussion_r433278685
##########
File path:
client/src/main/java/org/apache/rocketmq/client/impl/consumer/DefaultLitePullConsumerImpl.java
##########
@@ -691,7 +691,7 @@ public void run() {
ProcessQueue processQueue =
assignedMessageQueue.getProcessQueue(messageQueue);
- if (processQueue == null && processQueue.isDropped()) {
+ if (processQueue != null && processQueue.isDropped()) {
Review comment:
ok,i check both with (processQueue is null) or (processQueue not null
and isDropped)
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]