Ben Wilson
Ben Wilson
Hey folks, turns out I don't actually have hex package ownership on this one. Will resolve and try to get a release out later today.
It's been a very long time since I've looked at Vex code but yeah there definitely shouldn't be any `Code.ensure_loaded` calls at runtime. A faster / cached version is nice,...
What are the validators? Why might they not be loaded?
The normal use for `Code.ensure_loaded?` is something like ``` if Code.ensure_loaded?(Ecto) do def list_foos() do # if ecto is also around, make this function do stuff end else def list_foos,...
Yeah I was getting the same "this looks like protocols" vibe. The original commits for the ensure loaded lines come from when Elixir would have been ~`v0.10` so things have...
In looking at this more closely, the ensure loaded stuff may be completely unnecessary. I think it hails from a time when protocol implementation loading worked differently. Can you try...
It is never necessary to add a mix dependency to the extra applications list. On Sun, Dec 2, 2018 at 10:19 AM sampscl wrote: > I believe you need to...
This has to do with how you are closing your console and is unavoidable if you close it that way. When you close it that way, no cleanup code is...
That's correct.
@frekw Interesting! How is this metadata stored, on the event itself? Or as part of the event?