File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1082,7 +1082,7 @@ async def _list_collections(
1082
1082
AsyncCollection [MutableMapping [str , Any ]],
1083
1083
self .get_collection ("$cmd" , read_preference = read_preference ),
1084
1084
)
1085
- print ("Calling list_collections " )
1085
+ print ("Calling _list_collections " )
1086
1086
cmd = {"listCollections" : 1 , "cursor" : {}}
1087
1087
cmd .update (kwargs )
1088
1088
async with self ._client ._tmp_session (session , close = False ) as tmp_session :
@@ -1126,6 +1126,7 @@ async def _list_collections_helper(
1126
1126
1127
1127
.. versionadded:: 3.6
1128
1128
"""
1129
+ print ("Calling _list_collections_helper" )
1129
1130
if filter is not None :
1130
1131
kwargs ["filter" ] = filter
1131
1132
read_pref = (session and session ._txn_read_preference ()) or ReadPreference .PRIMARY
@@ -1172,6 +1173,7 @@ async def list_collections(
1172
1173
1173
1174
.. versionadded:: 3.6
1174
1175
"""
1176
+ print ("Calling list_collections" )
1175
1177
return await self ._list_collections_helper (session , filter , comment , ** kwargs )
1176
1178
1177
1179
async def _list_collection_names (
You can’t perform that action at this time.
0 commit comments