Snap for 11466562 from ca3ec2b58b to 24Q3-release

Change-Id: Iba9453d9a75a47ec7d6c9d266f4354c0a722b744
This commit is contained in:
Android Build Coastguard Worker 2024-02-18 22:24:41 +00:00
commit 4214a6b284

View file

@ -1167,9 +1167,9 @@ impl KeystoreDB {
"DELETE FROM persistent.blobmetadata WHERE blobentryid = ?;",
params![blob_id],
)
.context("Trying to delete blob metadata.")?;
.context(ks_err!("Trying to delete blob metadata: {:?}", blob_id))?;
tx.execute("DELETE FROM persistent.blobentry WHERE id = ?;", params![blob_id])
.context("Trying to blob.")?;
.context(ks_err!("Trying to delete blob: {:?}", blob_id))?;
}
Self::cleanup_unreferenced(tx).context("Trying to cleanup unreferenced.")?;