Fix a typo for the server blob timeout

Suppose to be 600s instead of 6001s.

Test: build
Change-Id: I3dde6ad5cc63b080054c7eb61a8c45401bb72346
This commit is contained in:
Tianjie
2021-02-24 17:08:27 -08:00
parent ea4a09d0a6
commit 6167df2365

View File

@@ -44,7 +44,7 @@ class RebootEscrowProviderServerBasedImpl implements RebootEscrowProviderInterfa
* Use the default lifetime of 10 minutes. The lifetime covers the following activities:
* Server wrap secret -> device reboot -> server unwrap blob.
*/
private static final long DEFAULT_SERVER_BLOB_LIFETIME_IN_MILLIS = 600_1000;
private static final long DEFAULT_SERVER_BLOB_LIFETIME_IN_MILLIS = 600_000;
private final LockSettingsStorage mStorage;