Yelp / zygote

A Python HTTP process management utility.
http://opensource.yelp.com/
Apache License 2.0
40 stars 15 forks source link

zygote status page can not display the remote ip #52

Closed baris closed 11 years ago

baris commented 11 years ago

This snippet from message.py:MessageHTTPBegin does not look right. "body" passed is just the request line (i.e. GET /foo HTTP/1.1).

    def __init__(self, pid, body):
        super(MessageHTTPBegin, self).__init__(pid)
        self.remote_ip, self.http_line = body.split(' ', 1)
baris commented 11 years ago

Fixed with #54