Barna Kovacs
Barna Kovacs
@zbetcheckin It would be good to fix this error
I used this workaround, you might find it temporarily useful: ``` db_timeout = case System.get_env("DB_TIMEOUT") do nil -> 30_000 "infinity" -> :infinity end config :silo, Silo.Repo, ... timeout: db_timeout ```...
Until then this line should be changed cause it causes an error in production: https://github.com/pablo-co/bamboo_postmark/blob/99dfa0fe2f1a9b20a2678601ea21608292b29962/test/lib/bamboo/postmark_adapter_test.exs#L145 Also the `put_param("Reply-To", "[email protected]")` solution should be documented. Should I open a PR for these?
@iangreenleaf thx for the code example, if somebody has the `email` layout in the new `my_app_web/components/layouts` folder: `AppWeb.EmailHTML.layout` should be `AppWeb.Layouts.email` ```elixir defp render_with_layout(email, heex) do html_body( email, render_component(AppWeb.Layouts.email(%{email: email,...
> @preciz this can be different for every repo depending on the setup and when the project was generated. You are right, I intended to bring it closer to somebody...
I saw that, but will that allow using multiple API providers at the same time from the same app? I think that config should be moved from the Application env...
It would be one way to solve it now yes. The better way would be similar to how multiple Repos in Ecto are configured.
Solved in https://github.com/dvcrn/ex_openai/pull/29