From 8bc57775de87ce48c903464b35dadbcf5560a942 Mon Sep 17 00:00:00 2001 From: The Magician Date: Fri, 27 Dec 2019 17:03:09 -0800 Subject: [PATCH] Reduce default batching interval (#303) Signed-off-by: Modular Magician Co-authored-by: emily --- google/batcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/batcher.go b/google/batcher.go index caa6b4595..9f1a0ecdc 100644 --- a/google/batcher.go +++ b/google/batcher.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/errwrap" ) -const defaultBatchSendIntervalSec = 10 +const defaultBatchSendIntervalSec = 3 // RequestBatcher is a global batcher object that keeps track of // existing batches.