Skip to content

Commit 0a9d2ad

Browse files
committed
testing
1 parent b01fa8a commit 0a9d2ad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pymongo/asynchronous/encryption.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import contextlib
1919
import enum
2020
import socket
21+
import traceback
2122
import uuid
2223
import weakref
2324
from copy import deepcopy
@@ -239,7 +240,7 @@ async def collection_info(self, database: str, filter: bytes) -> Optional[bytes]
239240
240241
:return: The first document from the listCollections command response as BSON.
241242
"""
242-
print("Calling collection_info")
243+
print(f"Calling collection_info {traceback.print_stack()}")
243244
async with await self.client_ref()[database].list_collections(
244245
filter=RawBSONDocument(filter)
245246
) as cursor:

0 commit comments

Comments
 (0)