Skip to content

Commit

Permalink
Fixed log message for listener reloading
Browse files Browse the repository at this point in the history
  • Loading branch information
MarSoft committed Jan 9, 2016
1 parent 3ccdafb commit 46da49f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gunicorn/arbiter.py
Expand Up @@ -399,7 +399,8 @@ def reload(self):
[l.close() for l in self.LISTENERS]
# init new listeners
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
self.cfg.on_reload(self)
Expand Down

0 comments on commit 46da49f

Please sign in to comment.