From 67a56598d4c527d5a678999069561322834ac04c Mon Sep 17 00:00:00 2001 From: Dan McArdle Date: Sat, 21 Sep 2024 13:09:44 -0400 Subject: [PATCH] lib/batcher: Deprecate unused option: batch_commit_timeout --- lib/batcher/options.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/batcher/options.go b/lib/batcher/options.go index 4aefeb17c..b5c34b12f 100644 --- a/lib/batcher/options.go +++ b/lib/batcher/options.go @@ -66,8 +66,9 @@ default based on the batch_mode in use. Advanced: true, }, { Name: "batch_commit_timeout", - Help: `Max time to wait for a batch to finish committing`, + Help: `Max time to wait for a batch to finish committing. (no longer used)`, Default: fs.Duration(10 * time.Minute), Advanced: true, + Hide: fs.OptionHideBoth, }} }