将库从Ecto 1更新为Ecto 2后,“shutdown:无法启动子:DBConnection.Ownership.Manager”

时间:2016-06-24 09:30:49

标签: elixir ecto postgrex

我有a library使用Ecto和Postgrex(Postgrex仅用于测试)。

从Ecto 1升级到Ecto 2后,测试套件开始出现此错误:

$ mix test
Compiling 4 files (.ex)
Generated ectoo app
** (EXIT from #PID<0.46.0>) shutdown: failed to start child: DBConnection.Ownership.Manager
    ** (EXIT) exited in: GenServer.call(DBConnection.Ownership.PoolSupervisor, {:start_child, [#PID<0.175.0>, Postgrex.Protocol, [pool: DBConnection.Poolboy, types: true, hostname: "localhost", types: true, otp_app: :ectoo, repo: Ectoo.Repo, adapter: Ecto.Adapters.Postgres, database: "ectoo_test", username: "henrik", pool_timeout: 5000, timeout: 15000, adapter: Ecto.Adapters.Postgres, database: "ectoo_test", username: "henrik", extensions: [{Ecto.Adapters.Postgres.DateTime, []}, {Postgrex.Extensions.JSON, [library: nil]}], port: 5432]]}, :infinity)
        ** (EXIT) no process

有什么想法吗?

1 个答案:

答案 0 :(得分:4)

我通过在测试运行时确保postgrex应用程序正在运行来修复此问题。

在mix.exs中:

def application do
  [applications: applications(Mix.env)]
end

defp applications(:test), do: [:logger, :postgrex]
defp applications(_), do: [:logger]