# File lib/big_record/connection_adapters/abstract_adapter.rb, line 101 def verify!(timeout) now = Time.now.to_i if (now - @last_verification) > timeout reconnect! unless active? @last_verification = now end end