INTEXT-145 Do not set the queue to fair

This commit is contained in:
Marius Bogoevici
2015-03-09 03:25:03 -04:00
committed by Artem Bilan
parent aef99fcd9d
commit da0f730298

View File

@@ -60,7 +60,7 @@ class QueueingMessageListenerInvoker implements Runnable, Lifecycle {
}
this.offsetManager = offsetManager;
this.errorHandler = errorHandler;
this.messages = new ArrayBlockingQueue<KafkaMessage>(capacity, true);
this.messages = new ArrayBlockingQueue<KafkaMessage>(capacity);
}
/**