I know it's a really specific set of ingredients, but I was wondering if
anyone has had any luck incorporating their pyramid app with celery, while
using their SQLAlchemy connection that's a scoped_session with the
ZopeTransactionExtension. I'm finding that when I put transaction.commit at
the end of my celery tasks in order to save the changed entities, the
entities are no longer available due to previous tasks having called
transaction.commit and removing the ones in question from the session.
I'd like to not have to create a sort of pyramid_tm for pyramid_celery;
hopefully there's something here that I'm missing.
Has anyone got any suggestions?
-Thomas