Wesley Beary

Results 204 comments of Wesley Beary

I just saw this for someone else. In their case it was because their config.ru included a first line to default to port 4000. Removing this line should likely fix...

Hey, sorry to hear it has come to that. I try to still support some of the central gems, but many were built and supported by others and not services...

Yeah, I realized the goal was a bit on the large side, especially for me to do by myself. I can certainly offer some help in the coordination side of...

Yeah, a github action or something similar makes sense, though I'm not sure about where it should live. We could make a distinct repo potentially, since it doesn't quite fit...

Sounds good, thanks!

@zdne in our usage of json-schema (via interagent/prmd) we split it along resource lines and basically enforce a particular directory structure to imply inclusions (more or less it builds a...

Thanks for the detailed report. Maybe it is in fact time to pull the plug on the "automagic" caching across connections and limit it to just caching within the context...

Thanks for details and opinions. I need to think harder on it when I am more fresh (bit fried at end of my current day). Will try to re-read and...

I wonder if maybe thread-local, but non-shared is the right middle ground? Previously: `Thread.current[:_excon_sockets] ||= {}` Currently: `@_excon_sockets[Thread.current.object_id] ||= {}` Maybe we should move to something more like this? ```ruby...

I think you are right, I knew what I meant, but apparently I was less on top of it explaining. I was thinking about keying off the object_id of the...