From 9ea4f3ad2de8879c157c20ffb607819595b7c39a Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Wed, 15 Mar 2023 10:21:44 -0700 Subject: [PATCH] Reduce lookBehind to 3 (fix #5) --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 896db9ad..d8f8578b 100644 --- a/main.go +++ b/main.go @@ -147,7 +147,7 @@ func main() { c := &Config{ Bind: ":47788", ChunkSize: 3, - LookBehind: 5, + LookBehind: 3, GoalBufferMin: 1, GoalBufferMax: 4, StreamIdleTime: 60,