Mat Trudel
Mat Trudel
I've had success with running `MIX_ENV=test mix deps.get`. I think elixir-ls runs in a test env, so maybe that's part of the reason. I've also had to do this at...
This will be a Bandit error, so this is the right place to file it. If it's possible to do so, could you turn logging up to trace and paste...
Here's what's happening: 1 (inferred from line 1): At some time prior, your server starts on clear TCP port 8000, using `Web.Router` as its Plug. 2. (lines 1-3): Client connects,...
Inspired by the inconsistency of the logging on line 6 of your trace above, I've updated the Thousand Island telemetry log helper format to be consistent across all log levels...
Above change released in Thousand Island 0.5.10
There's your answer - Bandit is unable to determine a protocol because the client isn't sending HTTP. I can't speculate on why Cowboy doesn't log this, but it does the...
There are some simple stats gathered already; check out https://hexdocs.pm/sched_ex/SchedEx.html#stats/1 to see if that's sufficient for your needs. If not, by all means reply back and we can talk about...
Thinking about it, the ability to find out when the next occurrence is scheduled could be useful. Happy to entertain a PR for that + related functionality. I *think* stats...
Closing due to inactivity
I like your approach - you're trading off building intermediate tuples with more stack work, but that's likely a good compromise to make. In terms of converting to a binary,...