Snap for 11466562 from ca3ec2b58b
to 24Q3-release
Change-Id: Iba9453d9a75a47ec7d6c9d266f4354c0a722b744
This commit is contained in:
commit
4214a6b284
1 changed files with 2 additions and 2 deletions
|
@ -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.")?;
|
||||
|
|
Loading…
Reference in a new issue