Chris Gaffney
Chris Gaffney
When trying to use ActiveRecord's Enum stuff with an enum column I end up with a type mismatch when creating records. ActiveRecord defaults to converting the enum values to integers...
We ran into an issue yesterday when the load balancer failed, all of our passenger instances became locked up attempting to access instrumental. There are several places in the Agent...
We have some rspec hooks which we use for debugging and don't want committed. It would be useful to have a cop which checks for those options (conditions? filters? I'm...
This changes code generation to prefer the ruby_package option when set in a proto file rather than trying to infer the name based on the protobuf package name. We have...
Description =========== I'm updating our [Ruby bindings to librdkafka](https://github.com/deadmanssnitch/kafka/) and was testing Kafka 2.3. It _seems_ like librdkafka isn't handling the response from Kafka that the API isn't supported but...
It has come up a couple times that people are surprised that just changing JEMALLOC_VERSION isn't enough. Today, changing the environment variable also requires a code push because it is...
A couple forks have added delay support. I don't fully understand the reasoning or what is causing the need for it. My best assumption is that the worker system is...
Temporary work around: ``` ruby Sunspot::Queue::Resque::IndexJob.class_eval do def self.queue "low" end end Sunspot::Queue::Resque::RemovalJob.class_eval do def self.queue "low" end end ```
On a project that was using IndexQueue we would occasionally see certain indexing jobs completely lock up. Timeouts would keep the workers from getting completely locked up.
I ran into an error trying to run against PostgreSQL 10.3 due to changes in the stat functions. Upgrading both Rails and PgHero was pretty straight forward so I'm tackling...