Skip to content

Instantly share code, notes, and snippets.

@petelacey
Created October 15, 2015 20:12
Show Gist options
  • Save petelacey/8cfe8b91e4fb8bc3a49d to your computer and use it in GitHub Desktop.
Save petelacey/8cfe8b91e4fb8bc3a49d to your computer and use it in GitHub Desktop.
class HealthController < ApplicationController
def index
ActiveRecord::Base.connection.execute('select 1')
head :ok
rescue
head :bad_request
end
end
get '/health', to: 'health#index'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment