Revert "Don't run FTS optimize job (for now)."
This reverts commit f26b2c0b2a
.
This commit is contained in:
parent
fa571f14e6
commit
0fcdf61e76
1 changed files with 8 additions and 8 deletions
|
@ -1,5 +1,7 @@
|
|||
package org.thoughtcrime.securesms.jobs
|
||||
|
||||
import org.thoughtcrime.securesms.database.SignalDatabase
|
||||
import org.thoughtcrime.securesms.dependencies.ApplicationDependencies
|
||||
import org.thoughtcrime.securesms.jobmanager.Data
|
||||
import org.thoughtcrime.securesms.jobmanager.Job
|
||||
import org.thoughtcrime.securesms.transport.RetryLaterException
|
||||
|
@ -16,8 +18,7 @@ class OptimizeMessageSearchIndexJob private constructor(parameters: Parameters)
|
|||
|
||||
@JvmStatic
|
||||
fun enqueue() {
|
||||
// TODO [greyson] Temporarily disabled until we can figure out what to do.
|
||||
// ApplicationDependencies.getJobManager().add(OptimizeMessageSearchIndexJob())
|
||||
ApplicationDependencies.getJobManager().add(OptimizeMessageSearchIndexJob())
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -36,12 +37,11 @@ class OptimizeMessageSearchIndexJob private constructor(parameters: Parameters)
|
|||
override fun getNextRunAttemptBackoff(pastAttemptCount: Int, exception: Exception): Long = 30.seconds.inWholeMilliseconds
|
||||
|
||||
override fun onRun() {
|
||||
// TODO [greyson] Temporarily disabled until we can figure out what to do.
|
||||
// val success = SignalDatabase.messageSearch.optimizeIndex(5.seconds.inWholeMilliseconds)
|
||||
//
|
||||
// if (!success) {
|
||||
// throw RetryLaterException()
|
||||
// }
|
||||
val success = SignalDatabase.messageSearch.optimizeIndex(5.seconds.inWholeMilliseconds)
|
||||
|
||||
if (!success) {
|
||||
throw RetryLaterException()
|
||||
}
|
||||
}
|
||||
|
||||
class Factory : Job.Factory<OptimizeMessageSearchIndexJob> {
|
||||
|
|
Loading…
Add table
Reference in a new issue