Skip to content

Commit

Permalink
Merge pull request #1294 from lmas/master
Browse files Browse the repository at this point in the history
Fixed TCPServer not setting the correct read_chunk_size.
  • Loading branch information
bdarnell committed Jan 11, 2015
2 parents eab34a9 + 2e466c1 commit 1c58eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tornado/tcpserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def __init__(self, io_loop=None, ssl_options=None, max_buffer_size=None,
self._pending_sockets = []
self._started = False
self.max_buffer_size = max_buffer_size
self.read_chunk_size = None
self.read_chunk_size = read_chunk_size

# Verify the SSL options. Otherwise we don't get errors until clients
# connect. This doesn't verify that the keys are legitimate, but
Expand Down

0 comments on commit 1c58eed

Please sign in to comment.