mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-22 01:57:41 +08:00
Improve deserr error for unknown values
This commit is contained in:
parent
e54fbb0d1e
commit
f95bd11db2
@ -330,8 +330,9 @@ impl<E: DeserializeError> Deserr<E> for Action {
|
||||
Some(action) => Ok(action),
|
||||
None => Err(deserr::take_cf_content(E::error::<std::convert::Infallible>(
|
||||
None,
|
||||
deserr::ErrorKind::Unexpected {
|
||||
msg: format!("string must be a valid action, got {}", s),
|
||||
deserr::ErrorKind::UnknownValue {
|
||||
value: &s,
|
||||
accepted: &Self::SERDE_MAP_ARR.map(|(ser_action, _)| ser_action),
|
||||
},
|
||||
location,
|
||||
))),
|
||||
|
Loading…
Reference in New Issue
Block a user