We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93edf33 commit e33c8e8Copy full SHA for e33c8e8
libs/langgraph-checkpoint-mongodb/tests/unit_tests/test_sync.py
@@ -15,9 +15,9 @@
15
)
16
from langgraph.checkpoint.mongodb import MongoDBSaver
17
18
-# Setup:
19
-# docker run --name mongodb -d -p 27017:27017 mongodb/mongodb-community-server
20
-MONGODB_URI = os.environ.get("MONGODB_URI", "mongodb://localhost:27017")
+MONGODB_URI = os.environ.get(
+ "MONGODB_URI", "mongodb://localhost:27017/?directConnection=true"
+)
21
DB_NAME = os.environ.get("DB_NAME", "langgraph-test")
22
COLLECTION_NAME = "sync_checkpoints"
23
0 commit comments