Skip to content

Commit

Permalink
feat: improve bytes encoding in healthcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelmauro committed Oct 31, 2024
1 parent 959542b commit 28ecc96
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/lib/dal/src/system_dal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,7 @@ impl SystemDal<'_, '_> {
description: row.description,
installed_on: row.installed_on,
success: row.success,
// TODO improve presentation
checksum: String::from_utf8_lossy(row.checksum.as_ref()).to_string(),
checksum: hex::encode(row.checksum),
execution_time: row.execution_time,
})
}
Expand Down

0 comments on commit 28ecc96

Please sign in to comment.