Browse Source

revert extra log on poll InMemoryTbQueueConsumer

pull/6431/head
Sergey Matvienko 4 years ago
parent
commit
b2fa263027
  1. 3
      common/queue/src/main/java/org/thingsboard/server/queue/memory/InMemoryTbQueueConsumer.java

3
common/queue/src/main/java/org/thingsboard/server/queue/memory/InMemoryTbQueueConsumer.java

@ -64,9 +64,6 @@ public class InMemoryTbQueueConsumer<T extends TbQueueMsg> implements TbQueueCon
@Override
public List<T> poll(long durationInMillis) {
if (topic.contains("main")){
log.warn("poll {} {}", topic, durationInMillis);
}
if (subscribed) {
@SuppressWarnings("unchecked")
List<T> messages = partitions

Loading…
Cancel
Save