1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-17 06:52:27 +01:00

[bug] scroll statistics tables not working when elastic is not localhost

This commit is contained in:
Sylvain 2016-06-23 11:11:54 +02:00
parent 60f504c660
commit c90f4684b9

View File

@ -20,7 +20,7 @@ class API::StatisticsController < API::ApiController
def scroll
authorize :statistic, :scroll?
results = Elasticsearch::Client.new.scroll scroll: params[:scroll], scroll_id: params[:scrollId]
results = Elasticsearch::Model.client.scroll scroll: params[:scroll], scroll_id: params[:scrollId]
render json: results
end