make format happy
This commit is contained in:
parent
b6faa09750
commit
ebb9e9ee2b
1 changed files with 7 additions and 2 deletions
|
@ -28,9 +28,14 @@ impl fmt::Display for EngineError {
|
|||
write!(f, "The upstream search engine returned an empty result set")
|
||||
}
|
||||
EngineError::RequestError => {
|
||||
write!(f, "Error occurred while requesting data from upstream search engine")
|
||||
write!(
|
||||
f,
|
||||
"Error occurred while requesting data from upstream search engine"
|
||||
)
|
||||
}
|
||||
EngineError::UnexpectedError => {
|
||||
write!(f, "An unexpected error occurred while processing the data")
|
||||
}
|
||||
EngineError::UnexpectedError => write!(f, "An unexpected error occurred while processing the data"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue