mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Merge pull request #701 from wking/700-debug-preload
Deprecate the --debug setting
This commit is contained in:
commit
97977e41ab
@ -215,10 +215,8 @@ debug
|
||||
* ``--debug``
|
||||
* ``False``
|
||||
|
||||
Turn on debugging in the server.
|
||||
|
||||
This limits the number of worker processes to 1 and changes some error
|
||||
handling that's sent to clients.
|
||||
**DEPRECATED**: This no functionality was removed after v18.0. This
|
||||
option is now a no-op.
|
||||
|
||||
reload
|
||||
~~~~~~
|
||||
|
||||
@ -96,21 +96,16 @@ class Arbiter(object):
|
||||
self.worker_class = self.cfg.worker_class
|
||||
self.address = self.cfg.address
|
||||
self.num_workers = self.cfg.workers
|
||||
self.debug = self.cfg.debug
|
||||
self.timeout = self.cfg.timeout
|
||||
self.proc_name = self.cfg.proc_name
|
||||
|
||||
if self.cfg.debug:
|
||||
self.log.debug("Current configuration:")
|
||||
for config, value in sorted(self.cfg.settings.items(),
|
||||
key=lambda setting: setting[1]):
|
||||
self.log.debug(" %s: %s", config, value.value)
|
||||
self.log.debug("Current configuration:")
|
||||
for config, value in sorted(self.cfg.settings.items(),
|
||||
key=lambda setting: setting[1]):
|
||||
self.log.debug(" %s: %s", config, value.value)
|
||||
|
||||
if self.cfg.preload_app:
|
||||
if not self.cfg.debug:
|
||||
self.app.wsgi()
|
||||
else:
|
||||
self.log.warning("debug mode: app isn't preloaded.")
|
||||
self.app.wsgi()
|
||||
|
||||
def start(self):
|
||||
"""\
|
||||
|
||||
@ -701,8 +701,8 @@ class Debug(Setting):
|
||||
desc = """\
|
||||
Turn on debugging in the server.
|
||||
|
||||
This limits the number of worker processes to 1 and changes some error
|
||||
handling that's sent to clients.
|
||||
**DEPRECATED**: This no functionality was removed after v18.0.
|
||||
This option is now a no-op.
|
||||
"""
|
||||
|
||||
|
||||
|
||||
@ -46,7 +46,6 @@ class Worker(object):
|
||||
self.max_requests = cfg.max_requests or MAXSIZE
|
||||
self.alive = True
|
||||
self.log = log
|
||||
self.debug = cfg.debug
|
||||
self.tmp = WorkerTmp(cfg)
|
||||
|
||||
def __str__(self):
|
||||
|
||||
@ -57,7 +57,7 @@ def test_property_access():
|
||||
# Class was loaded
|
||||
t.eq(c.worker_class, SyncWorker)
|
||||
|
||||
# Debug affects workers
|
||||
# Workers defaults to 1
|
||||
t.eq(c.workers, 1)
|
||||
c.set("workers", 3)
|
||||
t.eq(c.workers, 3)
|
||||
@ -89,15 +89,15 @@ def test_property_access():
|
||||
|
||||
def test_bool_validation():
|
||||
c = config.Config()
|
||||
t.eq(c.debug, False)
|
||||
c.set("debug", True)
|
||||
t.eq(c.debug, True)
|
||||
c.set("debug", "true")
|
||||
t.eq(c.debug, True)
|
||||
c.set("debug", "false")
|
||||
t.eq(c.debug, False)
|
||||
t.raises(ValueError, c.set, "debug", "zilch")
|
||||
t.raises(TypeError, c.set, "debug", 4)
|
||||
t.eq(c.preload_app, False)
|
||||
c.set("preload_app", True)
|
||||
t.eq(c.preload_app, True)
|
||||
c.set("preload_app", "true")
|
||||
t.eq(c.preload_app, True)
|
||||
c.set("preload_app", "false")
|
||||
t.eq(c.preload_app, False)
|
||||
t.raises(ValueError, c.set, "preload_app", "zilch")
|
||||
t.raises(TypeError, c.set, "preload_app", 4)
|
||||
|
||||
def test_pos_int_validation():
|
||||
c = config.Config()
|
||||
@ -169,9 +169,9 @@ def test_cmd_line():
|
||||
with AltArgs(["prog_name", "-w", "3"]):
|
||||
app = NoConfigApp()
|
||||
t.eq(app.cfg.workers, 3)
|
||||
with AltArgs(["prog_name", "--debug"]):
|
||||
with AltArgs(["prog_name", "--preload"]):
|
||||
app = NoConfigApp()
|
||||
t.eq(app.cfg.debug, True)
|
||||
t.eq(app.cfg.preload_app, True)
|
||||
|
||||
def test_app_config():
|
||||
with AltArgs():
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user