This method is deprecated or moved on the latest stable version.
The last existing version (v3.2.13) is shown here.
verify_active_connections!()
public
Verify active connections and remove and disconnect connections associated
with stale threads.
# File activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb, line 167
def verify_active_connections! #:nodoc:
synchronize do
clear_stale_cached_connections!
@connections.each do |connection|
connection.verify!
end
end
end