= private = protected
verify!()
Checks whether the connection to the database is still active (i.e. not stale). This is done under the hood by calling #active?. If the connection is no longer active, then this method will reconnect to the database.
# File activerecord/lib/active_record/connection_adapters/abstract_adapter.rb, line 586 def verify! reconnect! unless active? end