Alex Vondrak
Alex Vondrak
The `Pry.config.should_load_local_rc` flag was first added for #612. The intended use case was to set it to `false` in your "global" RC file (~/.pryrc, ~/.config/pry/pryrc, etc) to disable local RC...
I have a custom code object and a handler that adds it to the YARD registry. I'm using `.yardopts` to pass the `-e` flag pointing at this custom code. `.yardopts`...
Awhile back I had an issue where using `Redis#blpop` in my code would reliably leak connections. I forgot to open an issue about it, but I seemed to fix it,...
Hi, it's me again with some em-synchrony issues. 😅 Just for posterity (i.e., for #915), I'm getting errors akin to this: ``` undefined method `"*2\r\n$4\r\nLLEN\r\n$6\r\nmylist\r\n"' for nil:NilClass (NoMethodError) redis-4.1.0/lib/redis/connection/synchrony.rb:121:in `write'...
I have my Redis calls instrumented in production with [Honeycomb's](https://www.honeycomb.io) Ruby [beeline](https://github.com/honeycombio/beeline-ruby), which has pointed to an interesting issue with the reconnect logic. We're using the synchrony driver, which I...
I've just observed (in the wild) a couple of user agents that appear to specify the Android _API level_ instead of the actual Android _OS version_, even though they're isomorphic:...
When upgrading to resque-scheduler 4.9.0 and above with redis-rb 4.x, we still get the deprecation notices related to https://github.com/resque/resque/issues/1794 and https://github.com/resque/resque-scheduler/issues/745. Repro: ```ruby require "bundler/inline" gemfile do source "https://rubygems.org" gem...
Due to https://github.com/resque/resque-scheduler/pull/767, resque-scheduler 4.9+ now wraps all enqueues within a Redis transaction. This means that Redis commands in `before_enqueue` hooks (inadvertently) no longer run synchronously under redis 4.x, which...
With #48533 circa Rails 7.1, attribute methods and aliases are defined "lazily" on AR subclasses, meaning they get defined on the first call to `ActiveRecord::Base#initialize` via `#init_internals`: https://github.com/rails/rails/blob/1818beb3a3ea5fdb498095d4885f8a7e512f24ca/activerecord/lib/active_record/core.rb#L755-L756 Since defining...
Discovered a hairy issue! It involved a couple moving parts: 1. We had a job that was always raising a particular exception in `perform` due to some bad data. 2....