Re: [pylons-discuss] Authenticating with Oauth2/OpenID Connect

2019-06-24 Thread Jonathan Vanasco
On Friday, June 21, 2019 at 8:43:32 PM UTC-4, Mike Orr wrote: > > But if I want to contribute to the enterprise's Single Sign-In, do I need > to > tell the server the user is still logged into my application so it > doesn't expire the SSO account? That is up to your upstream identity

[pylons-discuss] Re: How to handle SQLA autoflush failures during Request commit?

2019-06-24 Thread Jonathan Vanasco
This generally happens because of an issue in your exception handling or because you are trying to share a database connection across process boundaries. The first thing to do is to check if you are connecting to the database before gunicorn forked. If so, this will likely go away if you