mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 03:47:02 +02:00
Merge #235
235: Fix dump not found error r=MarinPostma a=MarinPostma fix #233 Co-authored-by: marin postma <postma.marin@protonmail.com>
This commit is contained in:
commit
3175f09989
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ impl ErrorCode for DumpActorError {
|
|||
fn error_code(&self) -> Code {
|
||||
match self {
|
||||
DumpActorError::DumpAlreadyRunning => Code::DumpAlreadyInProgress,
|
||||
DumpActorError::DumpDoesNotExist(_) => Code::DocumentNotFound,
|
||||
DumpActorError::DumpDoesNotExist(_) => Code::NotFound,
|
||||
DumpActorError::Internal(_) => Code::Internal,
|
||||
DumpActorError::UuidResolver(e) => e.error_code(),
|
||||
DumpActorError::UpdateActor(e) => e.error_code(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue