Skip to content

Commit

Permalink
Buffer size has been increased. (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekrja authored Sep 25, 2024
1 parent 5244841 commit 5a55a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/optislang/core/tcp/osl_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ class TcpClient:
>>> client.send_msg('{ "What": "SYSTEMS_STATUS_INFO" }')
"""

_BUFFER_SIZE = pow(2, 12)
_BUFFER_SIZE = pow(2, 16)
# Response size in bytes. Value is assumed to be binary 64Bit unsigned integer.
_RESPONSE_SIZE_BYTES = 8

Expand Down

0 comments on commit 5a55a4d

Please sign in to comment.