When running with:
config.active_record.permanent_connection_checkout = :disallowed
The following code appears to have issues:
|
if connection.supports_insert_conflict_target? |
Better to use Model.with_connection do |connection|.
See socketry/community#8 for background.
When running with:
The following code appears to have issues:
solid_queue/app/models/solid_queue/recurring_task.rb
Line 39 in 1957f57
Better to use
Model.with_connection do |connection|.See socketry/community#8 for background.