From 38ff2f7276d0330b76bbb4bec023fcb0761d8c15 Mon Sep 17 00:00:00 2001 From: voroq Date: Mon, 8 Sep 2025 06:54:21 +0800 Subject: [PATCH] fix: correct typo in MongoDB connection string within .env.example (#560) * fix: correct typo in MongoDB connection string within .env.example - Changes 'ongodb' to 'mongodb' in LANGGRAPH_CHECKPOINT_DB_URL example. - This ensures the example configuration is valid and can be used directly. * Update LANGGRAPH_CHECKPOINT_DB_URL in .env.example --------- Co-authored-by: Willem Jiang --- .env.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 2782a06..41468ab 100644 --- a/.env.example +++ b/.env.example @@ -60,5 +60,5 @@ VOLCENGINE_TTS_ACCESS_TOKEN=xxx # Enable LangGraph checkpoint saver, supports MongoDB, Postgres #LANGGRAPH_CHECKPOINT_SAVER=true # Set the database URL for saving checkpoints -#LANGGRAPH_CHECKPOINT_DB_URL="ongodb://localhost:27017/ -#LANGGRAPH_CHECKPOINT_DB_URL=postgresql://localhost:5432/postgres \ No newline at end of file +#LANGGRAPH_CHECKPOINT_DB_URL=mongodb://localhost:27017/ +#LANGGRAPH_CHECKPOINT_DB_URL=postgresql://localhost:5432/postgres