Skip to content

Commit

Permalink
increase size for totals. datacite/datacite#359
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Fenner committed Nov 21, 2019
1 parent 6edf2c6 commit 1ad60af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/models/doi.rb
Original file line number Diff line number Diff line change
Expand Up @@ -515,9 +515,9 @@ def self.totals_aggregations
# }

{
providers_totals: { terms: { field: 'provider_id', size: 25, min_doc_count: 1 }, aggs: sub_aggregations },
clients_totals: { terms: { field: 'client_id', size: 25, min_doc_count: 1 }, aggs: sub_aggregations },
prefixes_totals: { terms: { field: 'prefix', size: 25, min_doc_count: 1 }, aggs: sub_aggregations },
providers_totals: { terms: { field: 'provider_id', size: 250, min_doc_count: 1 }, aggs: sub_aggregations },
clients_totals: { terms: { field: 'client_id', size: 250, min_doc_count: 1 }, aggs: sub_aggregations },
prefixes_totals: { terms: { field: 'prefix', size: 250, min_doc_count: 1 }, aggs: sub_aggregations },
}
end

Expand Down

0 comments on commit 1ad60af

Please sign in to comment.