All Questions
Tagged with django-postgresql debugging
2
questions
1vote
0answers
251views
Django long running scripts and DB CPU usage
I running a script that uses Django ORM. The script runs for long time sometimes more than three days. Script looks like below
from app.models import *
for i in some_simpe_select():
...
5votes
1answer
953views
Django - How to get debug info of DatabaseError "current transaction is aborted" in Django error page?
While developing on my Django project I'm getting a DatabaseError that says:
current transaction is aborted, commands ignored until end of
transaction block
I know this happens because there was ...