Skip to content

Commit 9b6185d

Browse files
committed
refactor: update postgresql_embedded::ArchiveError argument
1 parent 2f203fe commit 9b6185d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

postgresql_embedded/src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pub type Result<T, E = Error> = core::result::Result<T, E>;
88
pub enum Error {
99
/// Error when PostgreSQL archive operations fail
1010
#[error(transparent)]
11-
ArchiveError(anyhow::Error),
11+
ArchiveError(postgresql_archive::Error),
1212
/// Error when the hash of the archive does not match the expected hash
1313
#[error("Archive hash [{archive_hash}] does not match expected hash [{hash}]")]
1414
ArchiveHashMismatch { archive_hash: String, hash: String },

0 commit comments

Comments
 (0)