Skip to content

Instantly share code, notes, and snippets.

@burgalon
Created January 20, 2012 15:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save burgalon/1647879 to your computer and use it in GitHub Desktop.
Save burgalon/1647879 to your computer and use it in GitHub Desktop.
Rack middleware for Mongo::OperationTimeout
.....
config.middleware.insert_after 'Rack::Cache', 'ReconnectMongo'
....
require "reconnect_mongo"
class ReconnectMongo
def initialize(app)
@app = app
end
def call(env)
begin
User.first
rescue Mongo::OperationTimeout
Mongoid.reconnect!
now = Time.now
$last_timeout ||= now
Rails.logger.warn "Mongo::OperationTimeout - reconnecting... Time since last timeout " + (now - $last_timeout).inspect
$last_timeout = now
end
@app.call(env)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment