Class: Ready::For::Migration::HealthController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
app/controllers/ready/for/migration/health_controller.rb

Instance Method Summary collapse

Instance Method Details

#readinessObject



6
7
8
9
10
11
12
# File 'app/controllers/ready/for/migration/health_controller.rb', line 6

def readiness
  if ApplicationRecord.connection.migration_context.needs_migration?
    head 503
  else
    head 200
  end
end