Skip to content

Commit

Permalink
Merge pull request Yelp#30 from Roguelazer/more_tornado_2x
Browse files Browse the repository at this point in the history
restore tornado 1.x compat
  • Loading branch information
eskil committed Mar 15, 2012
2 parents 1722a6a + 63e67dd commit d7db851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zygote/_httpserver.py
Expand Up @@ -364,7 +364,7 @@ def _on_headers(self, data):
return

if self._headers_callback is not None:
self._headers_callback('%s %s' % (self._request.remote_ip, start_line))
self._headers_callback(start_line, headers)
self.request_callback(self._request)
except _BadRequestException, e:
logging.info("Malformed HTTP request from %s: %s",
Expand Down

0 comments on commit d7db851

Please sign in to comment.