On Jul 22, 5:33 pm, Harish <[EMAIL PROTECTED]> wrote:
>
> The session is transactional with autoflush=False. Why is a query
> trying to find out the status of session? Is there anything that could
> have been done wrong?
>
> Thanks in advance for the help!


that error is usually when flush() raises an error yet further
operations are continued upon the underlying connection.  Since the
error occurs randomly, this very strongly suggests unsynchronized
access by multiple threads to either a single Session or a single
Connection underlying it.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to