mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-01-30 23:13:09 +08:00
Merge #2095
2095: feat(error): Update the error message when you have no version file r=MarinPostma a=irevoire Following this [issue](https://github.com/meilisearch/meilisearch-kubernetes/issues/95) we decided to change the error message from: ``` Version file is missing or the previous MeiliSearch engine version was below 0.24.0. Use a dump to update MeiliSearch. ``` to ``` Version file is missing or the previous MeiliSearch engine version was below 0.25.0. Use a dump to update MeiliSearch. ``` Co-authored-by: Tamo <tamo@meilisearch.com>
This commit is contained in:
commit
5981e6c57c
@ -1,6 +1,9 @@
|
||||
#[derive(thiserror::Error, Debug)]
|
||||
pub enum VersionFileError {
|
||||
#[error("Version file is missing or the previous MeiliSearch engine version was below 0.24.0. Use a dump to update MeiliSearch.")]
|
||||
#[error(
|
||||
"MeilSearch (v{}) failed to infer the version of the database. Please consider using a dump to load your data.",
|
||||
env!("CARGO_PKG_VERSION").to_string()
|
||||
)]
|
||||
MissingVersionFile,
|
||||
#[error("Version file is corrupted and thus MeiliSearch is unable to determine the version of the database.")]
|
||||
MalformedVersionFile,
|
||||
|
Loading…
x
Reference in New Issue
Block a user