Skip to content

Commit 54a738b

Browse files
committed
Fix TestKit backend
1 parent 692cbdf commit 54a738b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

neo4j/_async/io/_pool.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,8 @@ async def _update_routing_table_from(
565565
return False
566566

567567
async def update_routing_table(
568-
self, *, database, imp_user, bookmarks, timeout, database_callback=None
568+
self, *, database, imp_user, bookmarks, timeout=None,
569+
database_callback=None
569570
):
570571
""" Update the routing table from the first router able to provide
571572
valid routing information.

neo4j/_sync/io/_pool.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,8 @@ def _update_routing_table_from(
565565
return False
566566

567567
def update_routing_table(
568-
self, *, database, imp_user, bookmarks, timeout, database_callback=None
568+
self, *, database, imp_user, bookmarks, timeout=None,
569+
database_callback=None
569570
):
570571
""" Update the routing table from the first router able to provide
571572
valid routing information.

0 commit comments

Comments
 (0)