mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
Don't do duplicate check on retries
This commit is contained in:
parent
e26d7129e7
commit
5e21552358
@ -7,6 +7,7 @@ import docspell.common._
|
||||
import docspell.joex.scheduler.{Context, Task}
|
||||
import docspell.store.queries.QItem
|
||||
import docspell.store.records.RFileMeta
|
||||
import docspell.store.records.RJob
|
||||
|
||||
import bitpeace.FileMeta
|
||||
import doobie._
|
||||
@ -17,7 +18,13 @@ object DuplicateCheck {
|
||||
def apply[F[_]: Sync]: Task[F, Args, Args] =
|
||||
Task { ctx =>
|
||||
if (ctx.args.meta.skipDuplicate)
|
||||
ctx.logger.debug("Checking for duplicate files") *> removeDuplicates(ctx)
|
||||
for {
|
||||
retries <- getRetryCount(ctx)
|
||||
res <-
|
||||
if (retries == 0)
|
||||
ctx.logger.debug("Checking for duplicate files") *> removeDuplicates(ctx)
|
||||
else ctx.args.pure[F]
|
||||
} yield res
|
||||
else ctx.logger.debug("Not checking for duplicates") *> ctx.args.pure[F]
|
||||
}
|
||||
|
||||
@ -30,6 +37,9 @@ object DuplicateCheck {
|
||||
ctx.args.files.filterNot(f => ids.contains(f.fileMetaId.id))
|
||||
)
|
||||
|
||||
private def getRetryCount[F[_]: Sync](ctx: Context[F, Args]): F[Int] =
|
||||
ctx.store.transact(RJob.getRetries(ctx.jobId)).map(_.getOrElse(0))
|
||||
|
||||
private def deleteDuplicate[F[_]: Sync](
|
||||
ctx: Context[F, Args]
|
||||
)(fd: FileMetaDupes): F[Unit] = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user