feat: reduce busyCheckInterval -> 250ms

This commit is contained in:
2024-11-12 09:10:27 +03:00
parent 078ad3614d
commit 90cc1563ec

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 {