2010/10/31 kevin <[email protected]>: > code.py: > app = web.application(urls, locals()) > app_wsgi = app.wsgifunc(session_mw) > > > > > gunicorn code:app_wsgi > > if i run gunicorn like this, web.config.debug is True. what is the correct > way to deploy using gunicorn so web.config.debug is False?
The only way right now is to set web.config.debug = False before creating the app. Anand -- You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/webpy?hl=en.
