docs: adjust error description to reflect internal errors

Co-authored-by: Andrew Lamb <alamb@influxdata.com>
pull/24376/head
Marco Neumann 2021-05-27 09:43:56 +02:00
parent d6f0dc7059
commit 48307e4ab2
1 changed files with 4 additions and 3 deletions

View File

@ -47,7 +47,7 @@ pub enum Error {
},
#[snafu(display(
"Revision cannot be zero (this transaction is always empty): {:?}",
"Internal error: Revision cannot be zero (this transaction is always empty): {:?}",
path
))]
RevisionZeroFailure { path: Path },
@ -402,8 +402,9 @@ mod tests {
let res =
rebuild_catalog::<TestCatalogState, _>(object_store, &path, server_id, db_name, ())
.await;
assert!(dbg!(res.unwrap_err().to_string())
.starts_with("Revision cannot be zero (this transaction is always empty):"));
assert!(dbg!(res.unwrap_err().to_string()).starts_with(
"Internal error: Revision cannot be zero (this transaction is always empty):"
));
}
#[tokio::test]