Skip to content

Commit 897172b

Browse files
[async] fix tests and missed rebase parts
1 parent f6418aa commit 897172b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/snowflake/connector/aio/_session_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ async def use_session(
419419
"""
420420
use_pooling = use_pooling if use_pooling is not None else self.use_pooling
421421
if not use_pooling:
422-
session = self.make_session()
422+
session = self.make_session(url=url)
423423
try:
424424
yield session
425425
finally:

test/unit/aio/test_proxies_async.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,7 @@ async def test_no_proxy_multiple_values_param_only(
420420
wiremock_mapping_dir,
421421
proxy_env_vars,
422422
no_proxy_factory,
423+
host_port_pooling,
423424
):
424425
target_wm, storage_wm, proxy_wm = wiremock_backend_storage_proxy
425426
_setup_backend_storage_mappings(

0 commit comments

Comments
 (0)