From 7eef4f3ff5a72429db0a04b869b66999561e198a Mon Sep 17 00:00:00 2001 From: Mrunmay Shelar Date: Thu, 5 Oct 2023 08:25:23 +0530 Subject: [PATCH] chore: changed forwarder channel cap to 10000 --- dozer-ingestion/src/ingestion/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dozer-ingestion/src/ingestion/mod.rs b/dozer-ingestion/src/ingestion/mod.rs index 10e05d47ce..550adbfade 100644 --- a/dozer-ingestion/src/ingestion/mod.rs +++ b/dozer-ingestion/src/ingestion/mod.rs @@ -10,7 +10,7 @@ pub struct IngestionConfig { impl Default for IngestionConfig { fn default() -> Self { Self { - forwarder_channel_cap: 100000, + forwarder_channel_cap: 10000, } } }