Skip to content

Commit 28ec99d

Browse files
kwadheraatgoogleGerrit Code Review
authored andcommitted
Merge "Log the consequences of watch_apex_info failing" into main
2 parents e051936 + c6c023d commit 28ec99d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

keystore2/src/maintenance.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ impl Maintenance {
251251
if keystore2_flags::attest_modules() {
252252
std::thread::spawn(move || {
253253
Self::watch_apex_info()
254-
.unwrap_or_else(|e| log::error!("watch_apex_info failed: {e:?}"));
254+
.unwrap_or_else(|e| log::error!("watch_apex_info failed, preventing keystore.module_hash.sent from being set to true; this may therefore block boot: {e:?}"));
255255
});
256256
} else {
257257
rustutils::system_properties::write("keystore.module_hash.sent", "true")

0 commit comments

Comments
 (0)