You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rather than remove the limit, I would be inclined to make it configurable. If the configured limit is nil, that can be used to effectively remove the limit.
Change to something like...
def all
Qa.config.tablebased_all_limit&.positive? ? output_set(base_relation.limit(1000)) : output_set(base_relation)
end
The config would default to 1000 to maintain backward compatibility.
authorities with more than 1000 entries have erratic behavior due to
questioning_authority/lib/qa/authorities/local/table_based_authority.rb
Line 47 in 2271be6
it seems like it would be good enough to just remove the
limit
.The text was updated successfully, but these errors were encountered: