Disable sync job service WTF for now.

Bug: 72549144
Test: build and boot
Change-Id: I948a5b677ee2f4f8501afbfcd2d9127b779aaebf
This commit is contained in:
Makoto Onuki
2018-02-05 14:52:09 -08:00
parent b04b70c93d
commit 848458ac4f

View File

@@ -137,11 +137,13 @@ public class SyncJobService extends JobService {
+ " params=" + jobParametersToString(params));
}
} else if (runtime < 10 * 1000) {
// Job stopped too soon. WTF.
wtf("Job " + jobId + " stopped in " + runtime + " ms: "
+ " startUptime=" + startUptime
+ " nowUptime=" + nowUptime
+ " params=" + jobParametersToString(params));
// This happens too in a normal case too, and it's rather too often.
// Disable it for now.
// // Job stopped too soon. WTF.
// wtf("Job " + jobId + " stopped in " + runtime + " ms: "
// + " startUptime=" + startUptime
// + " nowUptime=" + nowUptime
// + " params=" + jobParametersToString(params));
}
mStartedSyncs.delete(jobId);