chore(deps): refresh mimalloc and codec usage (#7096)

This commit is contained in:
houseme
2026-09-03 16:11:24 +08:00
committed by GitHub
parent 86ebcb325c
commit 3ab7a1921f
9 changed files with 41 additions and 41 deletions
+2 -2
View File
@@ -1221,7 +1221,7 @@ mod tests {
use std::error::Error as _;
let error = StorageError::from(ErasureConstructionError::ModernEncoder {
source: reed_solomon_erasure::Error::TooManyShards,
source: rustfs_erasure_codec::Error::TooManyShards,
});
let io_source = error.source().expect("StorageError::Io must expose its io::Error source");
assert!(io_source.is::<std::io::Error>());
@@ -1232,7 +1232,7 @@ mod tests {
let encoder_source = construction_source
.source()
.expect("construction error must expose the encoder error");
assert!(encoder_source.is::<reed_solomon_erasure::Error>());
assert!(encoder_source.is::<rustfs_erasure_codec::Error>());
}
// The lifecycle transition worker relies on this arm alone to suppress the