Method: EatMySoul::Manager#monitor

Defined in:
lib/eatmysoul.rb

#monitor(o) ⇒ Object



253
254
255
256
257
258
259
260
261
# File 'lib/eatmysoul.rb', line 253

def monitor(o)
  if active_connection
    o.logger.debug "Checking for connection inactivity"
    if (Time.now - active_connection.last_ping) > 650
      o.logger.warn "Connection seems inactive, restarting ..."
      active_connection.close_connection
    end
  end
end