Allow a backoffInterval of zero.

This commit is contained in:
Greyson Parrelli
2026-06-17 12:22:47 -04:00
parent 4c7cf5212e
commit 1e6d575ec9
@@ -296,7 +296,7 @@ class JobController {
@WorkerThread
synchronized void onRetry(@NonNull Job job, long backoffInterval) {
if (backoffInterval <= 0) {
if (backoffInterval < 0) {
throw new IllegalArgumentException("Invalid backoff interval! " + backoffInterval);
}