Return true in onStartJob.

Returning true indicates that there is ongoing work.

Bug: 148754858
Test: None
Change-Id: I31bc4f986803a1462f87779d3f4eb14e10d7f841
This commit is contained in:
Kweku Adams
2021-03-11 11:01:34 -08:00
parent a84568723f
commit 7d56ee82ad

View File

@@ -42,7 +42,7 @@ public class BlobStoreIdleJobService extends JobService {
blobStoreManagerInternal.onIdleMaintenance();
jobFinished(params, false);
});
return false;
return true;
}
@Override