Re: postgres exception

2010-02-01 Thread knight
Thanks. I solved the problem. I added transaction.rollback() to one of the exceptions. Thanks On Feb 1, 2:27 pm, Shawn Milochik wrote: > Do you have any messages coming from prior to that? The error you're > receiving comes when something else has blown up with your database > transaction, and

Re: postgres exception

2010-02-01 Thread Shawn Milochik
Do you have any messages coming from prior to that? The error you're receiving comes when something else has blown up with your database transaction, and then your code tries to execute something else against the database while your transaction is already 'broken.' So, the problem is probably no

postgres exception

2010-02-01 Thread knight
I have django application and I'm using postgres. I try to execute the bollowing line in one of my tests: print BillingUser.objects.all() and I get the following error: "current transaction is aborted, commands ignored until end of transaction block." My postresql log is here: http://slexy.org/vi