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