You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2020/06/01 14:47:36 UTC

[GitHub] [rocketmq] lebron374 commented on a change in pull request #2059: [ISSUE #2044] Fix DefaultLitePullConsumerImpl NPE

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:
users@infra.apache.org