Merge branch '14196-api-v2-tokens' refs #14196
[arvados.git] / services / api / app / controllers / arvados / v1 / healthcheck_controller.rb
index e10b3936e17e9f4a148d9b826d491b86aac17269..6d55506bb5742cf9be7c183186b60f6479ab5226 100644 (file)
@@ -16,15 +16,15 @@ class Arvados::V1::HealthcheckController < ApplicationController
   before_filter :check_auth_header
 
   def check_auth_header
-    mgmt_token = Rails.configuration.management_token
+    mgmt_token = Rails.configuration.ManagementToken
     auth_header = request.headers['Authorization']
 
     if !mgmt_token
-      send_error("disabled", status: 404)
+      send_json ({"errors" => "disabled"}), status: 404
     elsif !auth_header
-      send_error("authorization required", status: 401)
+      send_json ({"errors" => "authorization required"}), status: 401
     elsif auth_header != 'Bearer '+mgmt_token
-      send_error("authorization error", status: 403)
+      send_json ({"errors" => "authorization error"}), status: 403
     end
   end