throw error on counts/posts endpoint during a timeout (#2170)
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
class CountsController < ApplicationController
|
||||
respond_to :xml, :json
|
||||
rescue_from Post::TimeoutError, with: :rescue_exception
|
||||
|
||||
def posts
|
||||
@count = Post.fast_count(params[:tags])
|
||||
@count = Post.fast_count(params[:tags], raise_on_timeout: true)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user