fix not found error

This commit is contained in:
marin postma 2021-06-23 15:06:36 +02:00
parent 0ebe3900e0
commit da36a6b5cd
No known key found for this signature in database
GPG Key ID: 6088B7721C3E39F9

View File

@ -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(),