Merge "Fix puller for SystemUptime" into rvc-dev am: f1eafd6917

Change-Id: I3f9f034c98925e63ccdfcabb01039de6028f4be5
This commit is contained in:
Christine Tsai
2020-03-19 06:13:12 +00:00
committed by Automerger Merge Worker

View File

@@ -1292,7 +1292,7 @@ public class StatsPullAtomService extends SystemService {
int pullSystemUptime(int atomTag, List<StatsEvent> pulledData) {
StatsEvent e = StatsEvent.newBuilder()
.setAtomId(atomTag)
.writeLong(SystemClock.elapsedRealtime())
.writeLong(SystemClock.uptimeMillis())
.build();
pulledData.add(e);
return StatsManager.PULL_SUCCESS;