5xx error status code for gitolite & encoding error
This commit is contained in:
parent
e8f39a0a61
commit
367e17cc84
|
@ -11,11 +11,11 @@ class ApplicationController < ActionController::Base
|
||||||
helper_method :abilities, :can?
|
helper_method :abilities, :can?
|
||||||
|
|
||||||
rescue_from Gitlab::Gitolite::AccessDenied do |exception|
|
rescue_from Gitlab::Gitolite::AccessDenied do |exception|
|
||||||
render "errors/gitolite", layout: "error"
|
render "errors/gitolite", layout: "error", status: 500
|
||||||
end
|
end
|
||||||
|
|
||||||
rescue_from Encoding::CompatibilityError do |exception|
|
rescue_from Encoding::CompatibilityError do |exception|
|
||||||
render "errors/encoding", layout: "error", status: 404
|
render "errors/encoding", layout: "error", status: 500
|
||||||
end
|
end
|
||||||
|
|
||||||
rescue_from ActiveRecord::RecordNotFound do |exception|
|
rescue_from ActiveRecord::RecordNotFound do |exception|
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
.alert-message.block-message.error
|
%h1 Encoding Error
|
||||||
%h3 Encoding Error
|
%hr
|
||||||
%hr
|
%p Page can't be loaded because of an encoding error.
|
||||||
%p
|
|
||||||
Page can't be loaded because of an encoding error.
|
|
||||||
|
|
Loading…
Reference in a new issue