feat: reduce busyCheckInterval -> 250ms

This commit is contained in:
Mohamed Sohail 2024-11-12 09:10:27 +03:00
parent 078ad3614d
commit 90cc1563ec
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D

View File

@ -29,7 +29,7 @@ type (
const (
idleCheckInterval = 60 * time.Second
busyCheckInterval = 1 * time.Second
busyCheckInterval = 250 * time.Millisecond
)
func New(o BackfillOpts) *Backfill {