mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-27 07:14:26 +01:00
Change last error messages
This commit is contained in:
parent
5a6d22d4ec
commit
0c0038488c
@ -232,11 +232,21 @@ impl fmt::Display for UserError {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
Self::InvalidFilter(error) => error.fmt(f),
|
Self::InvalidFilter(error) => error.fmt(f),
|
||||||
Self::InvalidGeoField { document_id, object } => write!(
|
Self::InvalidGeoField { document_id, object } => {
|
||||||
f,
|
let document_id = match document_id {
|
||||||
"The document with the id: `{}` contains an invalid _geo field: `{}`.",
|
Value::String(id) => id.clone(),
|
||||||
document_id, object
|
_ => document_id.to_string(),
|
||||||
),
|
};
|
||||||
|
let object = match object {
|
||||||
|
Value::String(id) => id.clone(),
|
||||||
|
_ => object.to_string(),
|
||||||
|
};
|
||||||
|
write!(
|
||||||
|
f,
|
||||||
|
"The document with the id: `{}` contains an invalid _geo field: `{}`.",
|
||||||
|
document_id, object
|
||||||
|
)
|
||||||
|
},
|
||||||
Self::InvalidDocumentId { document_id } => {
|
Self::InvalidDocumentId { document_id } => {
|
||||||
let document_id = match document_id {
|
let document_id = match document_id {
|
||||||
Value::String(id) => id.clone(),
|
Value::String(id) => id.clone(),
|
||||||
@ -268,10 +278,9 @@ ranking rules settings to use the sort parameter at search time.",
|
|||||||
write!(f, "Document doesn't have a `{}` attribute: `{}`.", primary_key, json)
|
write!(f, "Document doesn't have a `{}` attribute: `{}`.", primary_key, json)
|
||||||
}
|
}
|
||||||
Self::MissingPrimaryKey => f.write_str("Missing primary key."),
|
Self::MissingPrimaryKey => f.write_str("Missing primary key."),
|
||||||
Self::MaxDatabaseSizeReached => f.write_str("Maximum database size reached."),
|
Self::MaxDatabaseSizeReached => f.write_str("Maximum database size has been reached."),
|
||||||
// TODO where can we find it instead of writing the text ourselves?
|
Self::NoSpaceLeftOnDevice => f.write_str("There is no more space left on the device. Consider increasing the size of the disk/partition."),
|
||||||
Self::NoSpaceLeftOnDevice => f.write_str("No space left on device."),
|
Self::InvalidStoreFile => f.write_str("The database file is in an invalid state."),
|
||||||
Self::InvalidStoreFile => f.write_str("Store file is not a valid database file."),
|
|
||||||
Self::PrimaryKeyCannotBeChanged(primary_key) => {
|
Self::PrimaryKeyCannotBeChanged(primary_key) => {
|
||||||
write!(f, "Index already has a primary key: `{}`.", primary_key)
|
write!(f, "Index already has a primary key: `{}`.", primary_key)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user