Skip to content

Commit

Permalink
enable EvalCacheUpgrade.debouncerEnable by default
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Dec 11, 2024
1 parent bec7204 commit 4052220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/evalCache/EvalCacheUpgrade.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ final private class EvalCacheUpgrade(
private val expirableSris = ExpireCallbackMemo[Sri](scheduler, 3 minutes, expire)

private val debouncerSetting =
settings.makeSetting[Boolean]("EvalCacheUpgrade.debouncerEnable", false)
settings.makeSetting[Boolean]("EvalCacheUpgrade.debouncerEnable", true)

private val debouncer = DebouncerFunction[SetupId](scheduler.scheduleOnce(5.seconds, _), 64)

Expand Down

0 comments on commit 4052220

Please sign in to comment.