diff options
| author | 2024-05-07 22:00:44 +0000 | |
|---|---|---|
| committer | 2024-05-07 22:00:44 +0000 | |
| commit | 822f88379bd7dbcbc288fc0804e26ce0b34bee69 (patch) | |
| tree | 97d8d4461c7ed8d91119aa9c1e5346ce3baf4c2f | |
| parent | 29f3ad63a316a1d2a6b7fe24fe38533e7b294aee (diff) | |
| parent | a811a6e5210fbf2ae018c3b8df465c2c4466db5d (diff) | |
Merge "[SB][Sat] Reduce polling time for checking satellite allowed in location" into main
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/pipeline/satellite/data/prod/DeviceBasedSatelliteRepositoryImpl.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/satellite/data/prod/DeviceBasedSatelliteRepositoryImpl.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/satellite/data/prod/DeviceBasedSatelliteRepositoryImpl.kt index 0739b8362420..a7c4187afdbd 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/satellite/data/prod/DeviceBasedSatelliteRepositoryImpl.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/satellite/data/prod/DeviceBasedSatelliteRepositoryImpl.kt @@ -318,8 +318,8 @@ constructor( } companion object { - // TTL for satellite polling is one hour - const val POLLING_INTERVAL_MS: Long = 1000 * 60 * 60 + // TTL for satellite polling is twenty minutes + const val POLLING_INTERVAL_MS: Long = 1000 * 60 * 20 // Let the system boot up and stabilize before we check for system support const val MIN_UPTIME: Long = 1000 * 60 |