mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-09-19 03:06:26 +00:00
wip porting the index back in the scheduler
This commit is contained in:
committed by
Clément Renault
parent
fe330e1be9
commit
d8b8e04ad1
@ -3,8 +3,10 @@ use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
pub enum Error {
|
||||
#[error("Index not found")]
|
||||
IndexNotFound,
|
||||
#[error("Index `{}` not found", .0)]
|
||||
IndexNotFound(String),
|
||||
#[error("Index `{}` already exists", .0)]
|
||||
IndexAlreadyExists(String),
|
||||
#[error("Corrupted task queue.")]
|
||||
CorruptedTaskQueue,
|
||||
#[error(transparent)]
|
||||
|
Reference in New Issue
Block a user