Skip to content

Commit

Permalink
Merge pull request #148 from snowplow-incubator/fix-custom-resolver
Browse files Browse the repository at this point in the history
Fix ignored custom resolver
  • Loading branch information
stanch authored Aug 27, 2024
2 parents b105f74 + 94c19f6 commit 40e237a
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 40e237a

Please sign in to comment.