Think I found the hangup. Not sure why. to see what it was doing I had this... item = db.users.insert(name="newName") return item
when I change the return to.. return item.id no more hang time. On Wednesday, November 28, 2012 6:04:10 PM UTC-8, pumplerod wrote: > > I'm trying to perform an insert to a table I know exists but when I do my > http request just hangs for a long time and then says "Invalid Request" > This takes up to 30 seconds. > > When I check the table through the admin page I see that it did actually > insert a new record. > > I've been able to create a new record through the admin interface with no > issue. > > > db.users.insert(name="newName") > > > --