File tree Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 89
89
env :
90
90
ANSYSLMD_LICENSE_FILE : 1055@${{ secrets.LICENSE_SERVER }}
91
91
run : |
92
- docker run --detach --name speos-rpc -p 50098:50098 -e SPEOS_MAX_MESSAGE_LENGTH=268435456 -e SPEOS_LOG_LEVEL=2 -e ANSYSLMD_LICENSE_FILE=${{ env.ANSYSLMD_LICENSE_FILE }} -v "${{ github.workspace }}/tests/assets:/app/assets" --entrypoint /app/SpeosRPC_Server.x ghcr.io/ansys/speos-rpc:dev
92
+ docker run --detach --name speos-rpc -p 50098:50098 -e SPEOS_LOG_LEVEL=2 -e ANSYSLMD_LICENSE_FILE=${{ env.ANSYSLMD_LICENSE_FILE }} -v "${{ github.workspace }}/tests/assets:/app/assets" --entrypoint /app/SpeosRPC_Server.x ghcr.io/ansys/speos-rpc:dev
93
93
- name : " Run Ansys documentation building action"
94
94
uses : ansys/actions/doc-build@b46bf28ca54671fcb1444fb119533ecd113e98f0 # v9.0.11
95
95
with :
Original file line number Diff line number Diff line change @@ -122,6 +122,9 @@ class SpeosClient:
122
122
channel : ~grpc.Channel, optional
123
123
gRPC channel for server communication.
124
124
By default, ``None``.
125
+ message_size: int
126
+ Maximum Message size of a newly generated channel
127
+ By default, ``MAX_CLIENT_MESSAGE_SIZE``.
125
128
remote_instance : ansys.platform.instancemanagement.Instance
126
129
The corresponding remote instance when the Speos Service
127
130
is launched through PyPIM. This instance will be deleted when calling
Original file line number Diff line number Diff line change @@ -130,6 +130,9 @@ def launch_local_speos_rpc_server(
130
130
server_message_size : int
131
131
Maximum message length value accepted by the Speos RPC server,
132
132
By default, value stored in environment variable SPEOS_MAX_MESSAGE_LENGTH or 268 435 456.
133
+ client_message_size: int
134
+ Maximum Message size of a newly generated channel
135
+ By default, ``MAX_CLIENT_MESSAGE_SIZE``.
133
136
logfile_loc : str
134
137
location for the logfile to be created in.
135
138
log_level : int
Original file line number Diff line number Diff line change @@ -58,6 +58,9 @@ class Speos:
58
58
channel : ~grpc.Channel, optional
59
59
gRPC channel for server communication.
60
60
By default, ``None``.
61
+ message_size: int
62
+ Maximum Message size of a newly generated channel
63
+ By default, ``MAX_CLIENT_MESSAGE_SIZE``.
61
64
remote_instance : ansys.platform.instancemanagement.Instance
62
65
The corresponding remote instance when the Speos Service
63
66
is launched through PyPIM. This instance will be deleted when calling
You can’t perform that action at this time.
0 commit comments