We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When arbiter reloads workers on SIGHUP, and if old address is different from new address, it creates new sockets and logs about that. (https://github.com/benoitc/gunicorn/blob/master/gunicorn/arbiter.py#L402)
self.log.info("Listening at: %s", ",".join(str(self.LISTENERS)))
it takes a list, converts it to str and then joins resulting string with ,. Resulting log message is as follows:
list
str
,
[INFO] Listening at: [,<,g,u,n,i,c,o,r,n,.,s,o,c,k,.,T,C,P,S,o,c,k,e,t, ,o,b,j,e,c,t, ,a,t, ,0,x,7,f,8,e,3,d,2,1,f,7,8,0,>,]
Seems that this line should look like this:
self.log.info("Listening at: %s", ",".join(map(str, self.LISTENERS)))
Or maybe it should be made like on line 132 (in Arbiter.start).
Arbiter.start
The text was updated successfully, but these errors were encountered:
Fixed log message for listener reloading
46da49f
Fixes benoitc#1181
5aedba3
No branches or pull requests
When arbiter reloads workers on SIGHUP, and if old address is different from new address, it creates new sockets and logs about that. (https://github.com/benoitc/gunicorn/blob/master/gunicorn/arbiter.py#L402)
it takes a
list
, converts it tostr
and then joins resulting string with,
. Resulting log message is as follows:Seems that this line should look like this:
Or maybe it should be made like on line 132 (in
Arbiter.start
).The text was updated successfully, but these errors were encountered: