You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! It would unblock me if you could add max_send_message_length and max_receive_message_length in the server Configuration options. Thank you so much
server = grpc.server(futures.ThreadPoolExecutor(max_workers=10), options=[
('grpc.max_send_message_length', 1 << 25), # 32 MB max send message size
('grpc.max_receive_message_length', 1 << 25), # 32 MB max receive message size
])
# I want to be able to do the equivalent of this
The text was updated successfully, but these errors were encountered:
Hi! It would unblock me if you could add
max_send_message_length
andmax_receive_message_length
in the server Configuration options. Thank you so muchThe text was updated successfully, but these errors were encountered: