pcap_base: increase PDU queue length

some systems with slower HDD seem to have issues
writing the PDUs to disk. increasing length to see if that helps.
This commit is contained in:
Andre Puschmann 2021-05-18 12:20:57 +02:00
parent a245039cf3
commit d9a5d3f95a
1 changed files with 5 additions and 5 deletions

View File

@ -96,7 +96,7 @@ protected:
std::mutex mutex;
srslog::basic_logger& logger;
bool running = false;
static_blocking_queue<pcap_pdu_t, 512> queue;
static_blocking_queue<pcap_pdu_t, 1024> queue;
uint16_t ue_id = 0;
private: