Skip to content

Commit

Permalink
Increase response receive buffer size
Browse files Browse the repository at this point in the history
  • Loading branch information
Yepoleb committed Apr 11, 2019
1 parent 3e2f16b commit 8a1cf67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion valve/source/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def get_response(self):
if not ready[0]:
raise NoResponseError("Timed out waiting for response")
try:
data = ready[0][0].recv(1400)
data = ready[0][0].recv(65536)
except socket.error as exc:
six.raise_from(NoResponseError(exc))
return data
Expand Down

0 comments on commit 8a1cf67

Please sign in to comment.