Brian Durand

Results 12 comments of Brian Durand

Your config is specifying `:all => :master` which will force using the master connection. Try changing to `:all => :persistent` to have the read pool be the default.

I can't see any good way of adding logging that would work across database adapters and that wouldn't be too chatty. You could mix in something to you specific connections...

I'm not sure what side effects there may be in reporting the underlying adapter class name for the class name of the seamless database pool adapter. I did just add...

Can you capture the SQL generated with and without the gem installed from your development logs.

Those changes sound reasonable. Go ahead and add the tests.

How are the models not able to be deleted?

In the last release I optimized the thread synchronization to reduce lock contention. There was no particular reason to remove `join` other than it wasn't being used internally anymore (and...

Is it the archived file that ends up with bad permissions or is it the live log file?

I figured out the core issue is that there is a whitelist of allowed attributes on the image tag and style is not one of them. See https://github.com/quilljs/quill/issues/1556

@rafaelfranca I would agree that it is not ideal. I've moved the bulk of the code to `active_record/attribute_methods/dirty.rb`. I still needed to hook into the code from the transactions code...