mirror of
https://github.com/apache/rocketmq.git
synced 2026-09-01 15:47:01 +08:00
Merge pull request #4629 from fujian-zfj/develop-1
[ISSUE #4628] Fix bug in LMQ when checking multiple Dispatch Queue
This commit is contained in:
@@ -480,7 +480,7 @@ public class ConsumeQueue implements ConsumeQueueInterface, FileQueueLifeCycle {
|
||||
return false;
|
||||
}
|
||||
Map<String, String> prop = dispatchRequest.getPropertiesMap();
|
||||
if (prop == null && prop.isEmpty()) {
|
||||
if (prop == null || prop.isEmpty()) {
|
||||
return false;
|
||||
}
|
||||
String multiDispatchQueue = prop.get(MessageConst.PROPERTY_INNER_MULTI_DISPATCH);
|
||||
|
||||
Reference in New Issue
Block a user