From 72b2f9baf9cde1c7e3a81a4a116df67d9ced1f23 Mon Sep 17 00:00:00 2001 From: "Shane L. Duvall" Date: Wed, 16 Dec 2020 12:06:40 -0600 Subject: [PATCH] Modify default max queue size setting to match docs --- lib/Segment/QueueConsumer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Segment/QueueConsumer.php b/lib/Segment/QueueConsumer.php index 5008de0..ca25e3c 100644 --- a/lib/Segment/QueueConsumer.php +++ b/lib/Segment/QueueConsumer.php @@ -4,7 +4,7 @@ abstract class Segment_QueueConsumer extends Segment_Consumer { protected $type = "QueueConsumer"; protected $queue; - protected $max_queue_size = 1000; + protected $max_queue_size = 10000; protected $max_queue_size_bytes = 33554432; //32M protected $flush_at = 100;