> > Is there a chance there is a query/connection being made between the > initialization and worker process? >
Hmmm ... I am using celery task inheritance (http://docs.celeryproject.org/en/latest/userguide/tasks.html#task-inheritance) with `@property`s for domain model engine and domain model session. I call these two properties only from the body of the celery task function. For the checkpoint, I am doing all within the body of my checkpoint function which is only called from the body of the celery task function. ... but I'll 2x check! (I recall that task-inheritance in celery makes certain things happen before and others after the fork - I am using prefork) -- SQLAlchemy - The Python SQL Toolkit and Object Relational Mapper http://www.sqlalchemy.org/ To post example code, please provide an MCVE: Minimal, Complete, and Verifiable Example. See http://stackoverflow.com/help/mcve for a full description. --- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/d/optout.
