Skip to content

Commit 98fcfa9

Browse files
authored
Fix grpc size limitation (#703)
1 parent be8075d commit 98fcfa9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

azure_functions_worker/dispatcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ def load_bindings(self):
8585

8686
@classmethod
8787
async def connect(cls, host, port, worker_id, request_id,
88-
connect_timeout, max_msg_len=None):
88+
connect_timeout):
8989
loop = asyncio._get_running_loop()
9090
disp = cls(loop, host, port, worker_id, request_id,
91-
connect_timeout, max_msg_len)
91+
connect_timeout)
9292
disp._grpc_thread.start()
9393
await disp._grpc_connected_fut
9494
logger.info('Successfully opened gRPC channel to %s:%s', host, port)

0 commit comments

Comments
 (0)