Skip to content

Commit

Permalink
Merge pull request #1079 from AppFlowy-IO/fix/delete-blob-metadata-as…
Browse files Browse the repository at this point in the history
…sert

fix: remove assert when delete blob metadata
  • Loading branch information
speed2exe authored Dec 17, 2024
2 parents 06dc3b3 + 98ec542 commit 8efffef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/database/src/resource_usage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ pub async fn delete_blob_metadata(
.execute(tx.deref_mut())
.await?;
let n = result.rows_affected();
assert_eq!(n, 1);
tracing::info!("delete_blob_metadata: rows_affected: {}", n);
Ok(())
}

Expand Down

0 comments on commit 8efffef

Please sign in to comment.