[google-appengine] Re: BadArgumentError all of a sudden

2009-05-09 Thread kiren
FWIW, the offending query (which worked previously) looks like this: Debt.all().filter(user_from =, user.key()).filter(user_to !=, user.key()).order(-date) On May 9, 10:43 am, kiren kirense...@gmail.com wrote: My app has been deployed for some time and was working just fine.  Now I am getting

[google-appengine] Re: BadArgumentError all of a sudden

2009-05-09 Thread kiren
OK, problem solved. My query was actually illegal, per the documentation (Properties In Inequality Filters Must Be Sorted Before Other Sort Orders). However, it worked just fine before the latest push of the API code. Perhaps that requirement previously wasn't being strictly checked, so the

[google-appengine] Re: BadArgumentError all of a sudden

2009-05-09 Thread ryan
apologies for the breakage, kiren. :/ On May 9, 12:48 pm, kiren kirense...@gmail.com wrote: OK, problem solved.  My query was actually illegal, per the documentation (Properties In Inequality Filters Must Be Sorted Before Other Sort Orders).  However, it worked just fine before the latest