Skip to content

Commit f32cf97

Browse files
authored
Merge branch 'dev' into release-v1/1.1.0b2
2 parents 95226d0 + 4137bfd commit f32cf97

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

workers/proxy_worker/dispatcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,9 @@ async def connect(cls, host: str, port: int, worker_id: str,
247247
def __poll_grpc(self):
248248
options = []
249249
if self._grpc_max_msg_len:
250-
options.append(('grpc_local.max_receive_message_length',
250+
options.append(('grpc.max_receive_message_length',
251251
self._grpc_max_msg_len))
252-
options.append(('grpc_local.max_send_message_length',
252+
options.append(('grpc.max_send_message_length',
253253
self._grpc_max_msg_len))
254254

255255
channel = grpc.insecure_channel(

workers/tests/emulator_tests/test_blob_functions.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
3-
import sys
43
import time
54

65
from requests import JSONDecodeError
76
from tests.utils import testutils
8-
from unittest.case import skipIf
97

108

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

1511
@classmethod
@@ -154,8 +150,6 @@ def test_blob_trigger_with_large_content(self):
154150
raise
155151

156152

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

161155
@classmethod
@@ -164,8 +158,6 @@ def get_script_dir(cls):
164158
'blob_functions_stein'
165159

166160

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

171163
@classmethod

0 commit comments

Comments
 (0)