Skip to content
Snippets Groups Projects
Unverified Commit 99d3cc09 authored by Matthias Urhahn's avatar Matthias Urhahn Committed by GitHub
Browse files

Fix potentially failing background RiskLevel calculation on slow devices (DEV) (#2914)


Otherwise the system may kill our process while the RiskLevelTask is still running.

Co-authored-by: default avatarharambasicluka <64483219+harambasicluka@users.noreply.github.com>
parent 719be095
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,7 @@ import de.rki.coronawarnapp.exception.reporting.report
import de.rki.coronawarnapp.risk.RiskLevelTask
import de.rki.coronawarnapp.task.TaskController
import de.rki.coronawarnapp.task.common.DefaultTaskRequest
import de.rki.coronawarnapp.task.submitBlocking
import de.rki.coronawarnapp.util.worker.InjectedWorkerFactory
import timber.log.Timber
......@@ -23,7 +24,7 @@ class ExposureStateUpdateWorker @AssistedInject constructor(
override suspend fun doWork(): Result {
try {
taskController.submit(
taskController.submitBlocking(
DefaultTaskRequest(RiskLevelTask::class, originTag = "ExposureStateUpdateWorker")
)
Timber.tag(TAG).v("Risk level calculation triggered")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment