aboutsummaryrefslogtreecommitdiff
path: root/src/db/open.rs
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2024-04-10 14:35:30 +0200
committerAlex Auvolat <alex@adnab.me>2024-04-10 14:35:30 +0200
commit90e3c2af915251720a4253f78f3f1b4ba844800d (patch)
tree1ae581de8942c41a7691fe40aa5b39cc460b84a1 /src/db/open.rs
parent50669b3e768f9c3570db0dae60927c16fdba3592 (diff)
downloadgarage-90e3c2af915251720a4253f78f3f1b4ba844800d.tar.gz
garage-90e3c2af915251720a4253f78f3f1b4ba844800d.zip
[next-0.10] small updates to mention Garage v0.9.4
Diffstat (limited to 'src/db/open.rs')
-rw-r--r--src/db/open.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/open.rs b/src/db/open.rs
index 19bc96cc..b8de3cd7 100644
--- a/src/db/open.rs
+++ b/src/db/open.rs
@@ -36,7 +36,7 @@ impl std::str::FromStr for Engine {
match text {
"lmdb" | "heed" => Ok(Self::Lmdb),
"sqlite" | "sqlite3" | "rusqlite" => Ok(Self::Sqlite),
- "sled" => Err(Error("Sled is no longer supported as a database engine. Converting your old metadata db can be done using an older Garage binary (e.g. v0.9.3).".into())),
+ "sled" => Err(Error("Sled is no longer supported as a database engine. Converting your old metadata db can be done using an older Garage binary (e.g. v0.9.4).".into())),
kind => Err(Error(
format!(
"Invalid DB engine: {} (options are: lmdb, sqlite)",