From b8411bdd421db8549a7f8b55964440d3f7a53afd Mon Sep 17 00:00:00 2001 From: Brett Hoerner Date: Mon, 5 Feb 2024 11:50:53 -0700 Subject: [PATCH] Default batch size 1 --- hook-worker/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hook-worker/src/config.rs b/hook-worker/src/config.rs index 0c41d0b..32e49f7 100644 --- a/hook-worker/src/config.rs +++ b/hook-worker/src/config.rs @@ -38,7 +38,7 @@ pub struct Config { #[envconfig(default = "true")] pub transactional: bool, - #[envconfig(default = "10")] + #[envconfig(default = "1")] pub dequeue_batch_size: u32, }