Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions workers/proxy_worker/dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,9 @@ async def connect(cls, host: str, port: int, worker_id: str,
def __poll_grpc(self):
options = []
if self._grpc_max_msg_len:
options.append(('grpc_local.max_receive_message_length',
options.append(('grpc.max_receive_message_length',
self._grpc_max_msg_len))
options.append(('grpc_local.max_send_message_length',
options.append(('grpc.max_send_message_length',
self._grpc_max_msg_len))

channel = grpc.insecure_channel(
Expand Down
8 changes: 0 additions & 8 deletions workers/tests/emulator_tests/test_blob_functions.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import sys
import time

from requests import JSONDecodeError
from tests.utils import testutils
from unittest.case import skipIf


@skipIf(sys.version_info.minor >= 13,
'Temporary skip for Python 3.13+')
class TestBlobFunctions(testutils.WebHostTestCase):

@classmethod
Expand Down Expand Up @@ -154,8 +150,6 @@ def test_blob_trigger_with_large_content(self):
raise


@skipIf(sys.version_info.minor >= 13,
'Temporary skip for Python 3.13+')
class TestBlobFunctionsStein(TestBlobFunctions):

@classmethod
Expand All @@ -164,8 +158,6 @@ def get_script_dir(cls):
'blob_functions_stein'


@skipIf(sys.version_info.minor >= 13,
'Temporary skip for Python 3.13+')
class TestBlobFunctionsSteinGeneric(TestBlobFunctions):

@classmethod
Expand Down
Loading