From 8b10e33ecd1512f11dc5e865988e5d23a9293f01 Mon Sep 17 00:00:00 2001 From: benoitc Date: Thu, 17 Jun 2010 16:48:55 +0200 Subject: [PATCH] just display listening info if addres has changed on HUP. --- gunicorn/arbiter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/arbiter.py b/gunicorn/arbiter.py index 080958a7..a1e8f793 100644 --- a/gunicorn/arbiter.py +++ b/gunicorn/arbiter.py @@ -329,7 +329,7 @@ class Arbiter(object): if old_address != self.cfg.address: self.LISTENER.close() self.LISTENER = create_socket(self.cfg) - self.log.info("Listening at: %s" % self.LISTENER) + self.log.info("Listening at: %s" % self.LISTENER) # spawn new workers with new app & conf for i in range(self.app.cfg.workers):