Use longer watchdog deadline for RKP
Test: Build
Change-Id: Ifbaf9fb0ccfe94474bb4875250a9d75bb861956f
diff --git a/keystore2/src/remote_provisioning.rs b/keystore2/src/remote_provisioning.rs
index 2bdafd4..a1ce5f6 100644
--- a/keystore2/src/remote_provisioning.rs
+++ b/keystore2/src/remote_provisioning.rs
@@ -129,6 +129,6 @@
// by the calling function and allow for natural fallback to the factory key.
let rpc_name = get_remotely_provisioned_component_name(security_level)
.context(ks_err!("Trying to get IRPC name."))?;
- let _wd = wd::watch("Calling get_rkpd_attestation_key()");
+ let _wd = wd::watch_millis("Calling get_rkpd_attestation_key()", 1000);
rkpd_client::get_rkpd_attestation_key(&rpc_name, caller_uid)
}