Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inefficent Queries (get/filter) Don't Return Results In Some Cases #53

Merged

Conversation

sethdenner
Copy link
Contributor

Nasty bug here where for inefficient queries the limit on the query wasn't being reset. Somewhere in the get/filter django sets a limit to 21 (I think this is MAX_GET_RESULTS +1; use grep to find if curious). When there were more than 21 results in the query set there was a good chance that the result that matches the provided filter would not be in the result set.

Nasty bug here where for inefficient queries the limit on the query wasn't being reset. Somewhere in the get/filter django sets a limit to 21 (I think this is MAX_GET_RESULTS +1; use grep to find if curious). When there were more than 21 results in the query set there was a good chance that the result that matches the provided filter would not be in the result set.
@sethdenner sethdenner force-pushed the fix-inefficient-queries-cant-find-results branch from 87fe727 to 0366b87 Compare October 29, 2015 21:17
sethdenner added a commit that referenced this pull request Oct 29, 2015
…ind-results

Inefficent Queries (get/filter) Don't Return Results In Some Cases
@sethdenner sethdenner merged commit 9f3c2be into Knotis:master Oct 29, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant