Remove backoff criteria: it never kicked in

It never kicked in since we are never returning a retry() Result, but always either success() or failure() (see createWork() function). Also, there is already a default (exponential backoff starting from 30 seconds), so no need to override it.
This commit is contained in:
Stypox 2022-03-19 21:55:00 +01:00
parent 2a4add2571
commit ac91f1541a

View file

@ -132,7 +132,6 @@ class NotificationWorker(
TimeUnit.MILLISECONDS
).setConstraints(constraints)
.addTag(WORK_TAG)
.setBackoffCriteria(BackoffPolicy.LINEAR, 30, TimeUnit.MINUTES)
.build()
WorkManager.getInstance(context)