--
You received this message because you are subscribed to the Google Groups "pylons-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pylons-discus...@googlegroups.com.
To post to this group, send email to pylons-...@googlegroups.com.
Visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
You probably should use something like https://github.com/fafhrd91/pyramid_sockjs/blob/master/pyramid_sockjs/paster.pyOn May 7, 2013, at 3:59 PM, Sontek <son...@gmail.com> wrote:When using this configuration setup:[server:main]use = egg:gunicorn#mainhost = 0.0.0.0port = 9920worker_class = gunicorn.workers.ggevent.GeventWorkerworkers = 4I'm getting errors like:SQLALchemy:SAWarning: At least one scoped session is already present. configure() can not affect sessions that have already been created.and with dogpile.cache:Exception: This region is already configured with backend: <dogpile.cache.backends.redis.RedisBackend object at 0x2950f90>If you use gunicorn_paster everything works just fine. Anyone know what causes pserve to have trouble with these and if thereis a workaround?
are you using the Zope Extension for SQLAlchemy?
I got similar errors using it with gevent.
Removing this extension everything worked fine again.
--