Finch: Failed to lookup telemetry handlers

Found it. The discrepancy lies in the fact that Mix.install/1 starts the application for each dependency by default.

Solution is to just add Application.ensure_started(:telemetry) at the beginning of the Mix task.

1 Like