Skip to content

Commit 636f869

Browse files
committed
testing
1 parent 04596d6 commit 636f869

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pymongo/asynchronous/database.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ async def _list_collections(
10821082
AsyncCollection[MutableMapping[str, Any]],
10831083
self.get_collection("$cmd", read_preference=read_preference),
10841084
)
1085-
print("Calling list_collections")
1085+
print("Calling _list_collections")
10861086
cmd = {"listCollections": 1, "cursor": {}}
10871087
cmd.update(kwargs)
10881088
async with self._client._tmp_session(session, close=False) as tmp_session:
@@ -1126,6 +1126,7 @@ async def _list_collections_helper(
11261126
11271127
.. versionadded:: 3.6
11281128
"""
1129+
print("Calling _list_collections_helper")
11291130
if filter is not None:
11301131
kwargs["filter"] = filter
11311132
read_pref = (session and session._txn_read_preference()) or ReadPreference.PRIMARY
@@ -1172,6 +1173,7 @@ async def list_collections(
11721173
11731174
.. versionadded:: 3.6
11741175
"""
1176+
print("Calling list_collections")
11751177
return await self._list_collections_helper(session, filter, comment, **kwargs)
11761178

11771179
async def _list_collection_names(

0 commit comments

Comments
 (0)