FIX: Don't log validation errors for sso

This commit is contained in:
Robin Ward
2016-03-23 13:30:38 -04:00
parent 39863953cd
commit f0552af5f1
2 changed files with 6 additions and 4 deletions

View File

@@ -112,6 +112,8 @@ class SessionController < ApplicationController
else
render text: I18n.t("sso.not_found"), status: 500
end
rescue ActiveRecord::RecordInvalid => e
render text: I18n.t("sso.unknown_error"), status: 500
rescue => e
details = {}
SingleSignOn::ACCESSORS.each do |a|