Skip to content

Commit

Permalink
Fix ignored custom resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
stanch committed Aug 27, 2024
1 parent b105f74 commit 94c19f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ object Configuration {
resolver <- Resolver.fromConfig[IO](resolverConfig).leftMap(_.show)
completeResolver = resolver.copy(repos = resolver.repos ++ readIgluExtraRegistry())
client <- EitherT.liftF(IgluCirceClient.fromResolver[IO](completeResolver, resolverConfig.cacheSize))
} yield IgluResources(resolver, client)
} yield IgluResources(completeResolver, client)

private def loadEnrichmentsAsSDD(enrichmentsDirectory: Path,
igluClient: IgluCirceClient[IO],
Expand Down

0 comments on commit 94c19f6

Please sign in to comment.