mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-22 01:14:21 +01:00
turnoff the check for configuration file
This commit is contained in:
parent
af4936f157
commit
8c0cbaac3b
@ -51,6 +51,9 @@ def start(configfile=None, daemonize=False, environment=None,
|
|||||||
|
|
||||||
engine = cherrypy.engine
|
engine = cherrypy.engine
|
||||||
|
|
||||||
|
# Turn off autoreload
|
||||||
|
cherrypy.config.update({'engine.autoreload.on': False})
|
||||||
|
|
||||||
if environment is not None:
|
if environment is not None:
|
||||||
cherrypy.config.update({'environment': environment})
|
cherrypy.config.update({'environment': environment})
|
||||||
|
|
||||||
@ -73,8 +76,6 @@ def start(configfile=None, daemonize=False, environment=None,
|
|||||||
"scgi options.", 'ENGINE')
|
"scgi options.", 'ENGINE')
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
elif fastcgi or scgi or cgi:
|
elif fastcgi or scgi or cgi:
|
||||||
# Turn off autoreload when using *cgi.
|
|
||||||
cherrypy.config.update({'engine.autoreload_on': False})
|
|
||||||
# Turn off the default HTTP server (which is subscribed by default).
|
# Turn off the default HTTP server (which is subscribed by default).
|
||||||
cherrypy.server.unsubscribe()
|
cherrypy.server.unsubscribe()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user