Skip to content

Commit 4a6bfcf

Browse files
committed
update
1 parent 15785b9 commit 4a6bfcf

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

sdk/core/azure-core/azure/core/pipeline/_base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"request_id",
5454
"connection_data_block_size",
5555
"auth",
56+
"passthrough"
5657
])
5758

5859

sdk/core/azure-core/tests/azure_core_asynctests/test_transport_kwargs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ async def send(self, request, **kwargs): pass
4949
stream=False,
5050
request_id='request_id',
5151
connection_data_block_size=1024,
52-
auth='auth')
52+
auth='auth',
53+
passthrough=True)
5354

5455

5556
@pytest.mark.asyncio

sdk/core/azure-core/tests/test_transport_kwargs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ def test_valid_kwargs():
4444
stream=False,
4545
request_id='request_id',
4646
connection_data_block_size=1024,
47-
auth='auth')
47+
auth='auth',
48+
passthrough=True)
4849

4950
def test_invalid_kwargs():
5051
transport = mock.MagicMock()

0 commit comments

Comments
 (0)