mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 18:39:33 +00:00
Fix cache clearing
It must be cancelled when obtaining a pipeline.
This commit is contained in:
parent
a87500bf78
commit
716252721c
@ -136,12 +136,12 @@ object PipelineCache {
|
||||
private[this] val log = Logger.log4s[F](logger)
|
||||
|
||||
def withCache: Resource[F, Unit] =
|
||||
Resource.make(counter.update(_ + 1))(_ =>
|
||||
Resource.make(counter.update(_ + 1) *> cancelClear)(_ =>
|
||||
counter.updateAndGet(_ - 1).flatMap(n => scheduleClearPipeline(n))
|
||||
)
|
||||
|
||||
def scheduleClearPipeline(cnt: Long): F[Unit] =
|
||||
if (cnt > 0) cancelClear
|
||||
if (cnt > 0) ().pure[F]
|
||||
else cancelClear *> clearAllLater.flatMap(fiber => cleaningFiber.set(fiber.some))
|
||||
|
||||
private def cancelClear: F[Unit] =
|
||||
|
Loading…
x
Reference in New Issue
Block a user