diff options
| author | 2022-03-26 04:16:45 +0800 | |
|---|---|---|
| committer | 2022-03-26 04:17:37 +0800 | |
| commit | 2ea41864f1ea780cd2a517db727ecd6eda28b4c8 (patch) | |
| tree | 275e286f5c9499e887fb67461503e030ff8245bd | |
| parent | ca46dc186f961b43762b3b93e6637599d38d4faf (diff) | |
profcollect: Increase background processing frequency to every 4 hours
Test: presubmit
Bug: 225062937
Change-Id: Ib88a9be2978e2ea3648536907714c843eb851531
| -rw-r--r-- | services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java b/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java index 66e840b5120b..bbc28d78d6f2 100644 --- a/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java +++ b/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java @@ -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; |