profcollect: Increase background processing frequency to every 4 hours

Test: presubmit
Bug: 225062937
Change-Id: Ib88a9be2978e2ea3648536907714c843eb851531
This commit is contained in:
Yi Kong 2022-03-26 04:16:45 +08:00
parent ca46dc186f
commit 2ea41864f1

View File

@ -54,7 +54,7 @@ public final class ProfcollectForwardingService extends SystemService {
private static final boolean DEBUG = Log.isLoggable(LOG_TAG, Log.DEBUG);
private static final long BG_PROCESS_PERIOD = TimeUnit.DAYS.toMillis(1); // every 1 day.
private static final long BG_PROCESS_PERIOD = TimeUnit.HOURS.toMillis(4); // every 4 hours.
private IProfCollectd mIProfcollect;
private static ProfcollectForwardingService sSelfService;