increased limit for messages to 1000

This commit is contained in:
fourtf 2017-09-21 02:22:35 +02:00
parent ab641abd9c
commit 8eaca85402

View file

@ -13,7 +13,7 @@ template <typename T>
class LimitedQueue
{
public:
LimitedQueue(int limit = 100, int buffer = 25)
LimitedQueue(int limit = 1000, int buffer = 250)
: _offset(0)
, _limit(limit)
, _buffer(buffer)