X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/de8324b3fbbf3f67f0f61c162f5895e8dcd3142d..657235e9e2b90c837efe809fc014fe6fe0cb9b23:/services/api/app/controllers/application_controller.rb diff --git a/services/api/app/controllers/application_controller.rb b/services/api/app/controllers/application_controller.rb index 3a3f6d3345..e91e3ce03e 100644 --- a/services/api/app/controllers/application_controller.rb +++ b/services/api/app/controllers/application_controller.rb @@ -306,11 +306,15 @@ class ApplicationController < ActionController::Base limit_columns.map { |s| "octet_length(#{s})" }.join(" + ")) new_limit = 0 read_total = 0 - limit_query.find_each do |record| + limit_query.each do |record| new_limit += 1 read_total += record.read_length.to_i - break if ((read_total >= Rails.configuration.max_index_database_read) or - (new_limit >= @limit)) + if read_total >= Rails.configuration.max_index_database_read + new_limit -= 1 if new_limit > 1 + break + elsif new_limit >= @limit + break + end end @limit = new_limit @objects = @objects.limit(@limit)