This is the second time that I have uploaded an application to the
production server and had errors for an app that was working fine on
dev_appserver. Here's the portion of code supposedly in error:
recents = db.GqlQuery("SELECT * FROM Recent ORDER BY
time_date_stamp DESC LIMIT 10")
isnorecents = False
if recents.count() ==0:
isnorecents = True
The error message lists the recents.count() line (along with errors on
Google's datastore.py code). This app works fine in the development
environment - even with a completely empty datastore - but crashes on
the production server.
Is there some way to determine what will error out in the production
environment? Isn't the point of having a development environment to
simulate the behavior of the production environment?
warreninaustintexas
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---