From ec2bab4b78d638a5a8c6a6a525b176776685f59c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 3 Apr 2021 02:39:04 +0200 Subject: Change health check (#15988) --- app/controllers/health_controller.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app/controllers/health_controller.rb (limited to 'app/controllers/health_controller.rb') diff --git a/app/controllers/health_controller.rb b/app/controllers/health_controller.rb new file mode 100644 index 000000000..2a22a0557 --- /dev/null +++ b/app/controllers/health_controller.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +class HealthController < ActionController::Base + def show + render plain: 'OK' + end +end -- cgit