Bogomir Engel

Results 4 comments of Bogomir Engel

It's not entirely the same, but for selective usage I'm using this: ``` RSpec.configure do |config| config.before(:each, :use_bullet_detectors) do Bullet.start_request end config.after(:each, :use_bullet_detectors) do Bullet.perform_out_of_channel_notifications if Bullet.notification? Bullet.end_request end end...

For us an update to sassc 2.4.0 which included an update of ffi from 1.11.1 to 1.13.1 fixed it. sassc 2.2.1 brought a [LoadError fix](https://github.com/sass/sassc-ruby/pull/156) and 2.3.0 made the [arch...

That's definitely a good path forwards, I'm not a pronto contributor so this is just a user perspective, but let me add that sparing users the following 8 dependencies which...

For my local benchmarking tests, the issue was that keep alive led to all requests going to one worker. Once I was no longer using keep alive requests got balanced.