I usually just set environment to 'production', which handles all of
the necessary config knobs for you to stop tracebacks from being shown
(in addition to other useful stuff).
A look in the cherrypy source suggests that the following are the
settings triggered by the "production" environment by default:
'engine.autoreload_on': False,
'checker.on': False,
'tools.log_headers.on': False,
'request.show_tracebacks': False,
'request.show_mismatched_params': False,
'log.screen': False,
If you have those set already, perhaps something is borked in the way
you are applying your current config?
Cheers,
Anders.
Have you tried setting 'environment': 'production'? I'm pretty sure
that the default is 'development' which will send the tracebacks
instead of a simplified 500 error.
Eric
> Thanks for any info
>
> John Aherne
>
> --
> You received this message because you are subscribed to the Google Groups "cherrypy-users" group.
> To post to this group, send email to cherryp...@googlegroups.com.
> To unsubscribe from this group, send email to cherrypy-user...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/cherrypy-users?hl=en.
>