Silent logs of ping rendering
This commit is contained in:
parent
f3f5ef8c3b
commit
b338fe0efc
1 changed files with 6 additions and 4 deletions
|
@ -1,10 +1,12 @@
|
|||
class PingController < ApplicationController
|
||||
|
||||
def index
|
||||
if (ActiveRecord::Base.connected?)
|
||||
render nothing: true, status: 200, content_type: "application/json"
|
||||
else
|
||||
render nothing: true, status: 500, content_type: "application/json"
|
||||
Rails.logger.silence do
|
||||
if (ActiveRecord::Base.connected?)
|
||||
render nothing: true, status: 200, content_type: "application/json"
|
||||
else
|
||||
render nothing: true, status: 500, content_type: "application/json"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue