Alessandro Usseglio Viretta
Alessandro Usseglio Viretta
### Steps to reproduce 1. Create a release of the attached minimal project: `mix distillery.release` 2. Run the app: `_build/dev/rel/testapp/bin/testapp console` 3. In another term `_build/dev/rel/testapp/bin/testapp attach` fails with error...
Within a ExUnit test, I use an `on_exit` callback to cleanup the database after testing: ``` IO.inspect(My.Account |> My.Repo.all) # shows a record My.Account |> Ecto.Query.where(my_id: ^my_id) |> My.Repo.delete_all IO.inspect(My.Account...
when using sqlcipher, the `mix ecto.migrate` command (after `mix ecto.create`) results in the following error: ``` [error] GenServer #PID terminating ** (MatchError) no match of right hand side value: {:error,...
in the tutorial file at https://mambajl.readthedocs.io/en/latest/_downloads/line.jl, `srand` is not defined, I think it should be replaced by ``` using Random Random.seed!(123) ``` Thanks
in the tutorial file at https://mambajl.readthedocs.io/en/latest/_downloads/line.jl, `Symmetric` is not defined. The issue can be fixed by adding `import LinearAlgebra.Symmetric` Thanks
```WARNING: `@windows_only` is deprecated, use `@static if is_windows()` instead``` I guess that's easy to fix.
Hi, is there an idiomatic way to generate interruptions, as described in Petter Ögren's video https://youtu.be/DCZJUvTQV5Q?t=544 ? Thanks! [edit] I guess that making sure that "longer running actions are merely...
I think I need a little help with the configuration: In `config.ex`, I have: `adapter: {Tesla.Adapter.Finch, name: LoggerTelegramBackend.Finch} ` in `application.ex`: `{Finch, name: LoggerTelegramBackend.Finch}` is one of the children but...
### Describe the bug When sending an email via SMTP, I get the following warning: ``` [warning] Description: 'Authenticity is not established by certificate path validation' Reason: 'Option {verify, verify_peer}...
I'd like to run `set_my_command`, `set_my_description`, `set_my_name` and some other initialization code at bot startup. What's the best way to do it? Thanks!