diff options
author | Alex <alex@adnab.me> | 2024-03-19 15:59:19 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2024-03-19 15:59:19 +0000 |
commit | 65853a48634d662809eee5dafbe48535d400f4a0 (patch) | |
tree | 3bb01998fa81651a54ade8bf17ba87b5a3eff970 /src/util/error.rs | |
parent | 0038ca8a78f147b9c0ec07ef0121773aaf110dc9 (diff) | |
parent | 3eab639c146f67fc67534633ae26c9aec116327d (diff) | |
download | garage-65853a48634d662809eee5dafbe48535d400f4a0.tar.gz garage-65853a48634d662809eee5dafbe48535d400f4a0.zip |
Merge pull request 'block refcount repair' (#782) from block-ref-repair into next-0.10
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/782
Diffstat (limited to 'src/util/error.rs')
-rw-r--r-- | src/util/error.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/error.rs b/src/util/error.rs index da9eda10..75fd3f9c 100644 --- a/src/util/error.rs +++ b/src/util/error.rs @@ -70,6 +70,9 @@ pub enum Error { #[error(display = "Corrupt data: does not match hash {:?}", _0)] CorruptData(Hash), + #[error(display = "Missing block {:?}: no node returned a valid block", _0)] + MissingBlock(Hash), + #[error(display = "{}", _0)] Message(String), } |