mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Merge pull request #1182 from MarSoft/1181-reload-logging
Fixed log message for listener reloading
This commit is contained in:
commit
b2aa84b491
@ -399,7 +399,8 @@ class Arbiter(object):
|
|||||||
[l.close() for l in self.LISTENERS]
|
[l.close() for l in self.LISTENERS]
|
||||||
# init new listeners
|
# init new listeners
|
||||||
self.LISTENERS = create_sockets(self.cfg, self.log)
|
self.LISTENERS = create_sockets(self.cfg, self.log)
|
||||||
self.log.info("Listening at: %s", ",".join(str(self.LISTENERS)))
|
listeners_str = ",".join([str(l) for l in self.LISTENERS])
|
||||||
|
self.log.info("Listening at: %s", listeners_str)
|
||||||
|
|
||||||
# do some actions on reload
|
# do some actions on reload
|
||||||
self.cfg.on_reload(self)
|
self.cfg.on_reload(self)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user