mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 10:29:34 +00:00
Fail addon validation when joex cannot be reached
This commit is contained in:
parent
6cef9d4f07
commit
5c66fdda3a
@ -95,7 +95,13 @@ final class AddonValidate[F[_]: Async](
|
||||
)
|
||||
else rightUnitT
|
||||
|
||||
joexSupport <- EitherT.liftF(joexOps.getAddonSupport)
|
||||
joexSupport <- EitherT(joexOps.getAddonSupport.attempt).leftMap { ex =>
|
||||
logger.asUnsafe.warn(ex)(s"Joex validation failed!")
|
||||
AddonUnsupported(
|
||||
s"Joex validation failed due to an error: ${ex.getMessage}",
|
||||
Nil
|
||||
)
|
||||
}
|
||||
addonRunners <- EitherT.liftF(meta.enabledTypes(addonData))
|
||||
_ <- EitherT.liftF(
|
||||
logger.info(
|
||||
|
Loading…
x
Reference in New Issue
Block a user