Merge "Avoid unnecessary work." into sc-dev am: 6fc657d10f am: dc07aa1863

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15114896

Change-Id: I2800ff6d19770a0c320ca6e2921d49929ddf0b5b
This commit is contained in:
TreeHugger Robot
2021-06-28 16:46:53 +00:00
committed by Automerger Merge Worker

View File

@@ -82,7 +82,11 @@ public final class BackgroundJobsController extends StateController {
@Override
public void evaluateStateLocked(JobStatus jobStatus) {
updateSingleJobRestrictionLocked(jobStatus, sElapsedRealtimeClock.millis(), UNKNOWN);
if (jobStatus.isRequestedExpeditedJob()) {
// Only requested-EJs could have their run-in-bg constraint change outside of something
// coming through the ForceAppStandbyListener.
updateSingleJobRestrictionLocked(jobStatus, sElapsedRealtimeClock.millis(), UNKNOWN);
}
}
@Override