langgraph-checkpoint-postgres issue with version update #470

Closed
opened 2026-02-20 17:40:17 -05:00 by yindo · 8 comments
Owner

Originally created by @saurabhlalsaxena on GitHub (Feb 23, 2025).

Checked other resources

  • This is a bug, not a usage question. For questions, please use GitHub Discussions.
  • I added a clear and detailed title that summarizes the issue.
  • I read what a minimal reproducible example is (https://stackoverflow.com/help/minimal-reproducible-example).
  • I included a self-contained, minimal example that demonstrates the issue INCLUDING all the relevant imports. The code run AS IS to reproduce the issue.

Example Code

pip install -U langgraph-checkpoint-postgres

DB_URI ="" #Use an existing postgres checkpointer DB

from psycopg import Connection
from psycopg_pool import ConnectionPool
from psycopg.rows import dict_row
from langgraph.checkpoint.postgres import PostgresSaver

connection_kwargs ={
    "autocommit": True,
    "prepare_threshold": 0,
    "row_factory": dict_row,
}

pool = ConnectionPool(
    conninfo=DB_URI,
    max_size=20,
    kwargs=connection_kwargs
)

checkpointer = PostgresSaver(pool)

thread_id = "1"
config = {"configurable": {"thread_id": thread_id}}
checkpoint =  checkpointer.get(config)

Error Message and Stack Trace (if applicable)

/usr/local/lib/python3.11/dist-packages/langgraph/checkpoint/base/__init__.py in get(self, config)
    234             Optional[Checkpoint]: The requested checkpoint, or None if not found.
    235         """
--> 236         if value := self.get_tuple(config):
    237             return value.checkpoint
    238 

/usr/local/lib/python3.11/dist-packages/langgraph/checkpoint/postgres/__init__.py in get_tuple(self, config)
    218 
    219         with self._cursor() as cur:
--> 220             cur.execute(
    221                 self.SELECT_SQL + where,
    222                 args,

/usr/local/lib/python3.11/dist-packages/psycopg/cursor.py in execute(self, query, params, prepare, binary)
     95                 )
     96         except e._NO_TRACEBACK as ex:
---> 97             raise ex.with_traceback(None)
     98         return self
     99 

UndefinedColumn: column cw.task_path does not exist
LINE 27: ...array_agg(array[cw.type::bytea, cw.blob] order by cw.task_pa...

Description

Faced the below issue with langgraph-checkpoint-postgres:

UndefinedColumn: column cw.task_path does not exist
LINE 27: ...array_agg(array[cw.type::bytea, cw.blob] order by cw.task_pa...

Tried moving to an older version of langgraph-checkpoint-postgres (version - 2.0.8) and it is working fine.

I.e. we are able to connect to the DB with langgraph-checkpoint-postgres == 2.0.8

This is an issue with a recent upgrade to the library.

We have code running in production and will become a major problem for us.

System Info

System Information

OS: Linux
OS Version: #1 SMP PREEMPT_DYNAMIC Thu Jun 27 21:05:47 UTC 2024
Python Version: 3.11.11 (main, Dec 4 2024, 08:55:07) [GCC 11.4.0]

Package Information

langchain_core: 0.3.37
langchain: 0.3.19
langchain_community: 0.3.18
langsmith: 0.3.8
langchain_cli: 0.0.35
langchain_openai: 0.3.6
langchain_text_splitters: 0.3.6
langgraph_sdk: 0.1.53
langserve: 0.3.1

Other Dependencies

aiohttp<4.0.0,>=3.8.3: Installed. No version info available.
async-timeout<5.0.0,>=4.0.0;: Installed. No version info available.
dataclasses-json<0.7,>=0.5.7: Installed. No version info available.
fastapi: 0.115.8
gitpython: 3.1.44
gritql: 0.1.5
httpx: 0.28.1
httpx-sse<1.0.0,>=0.4.0: Installed. No version info available.
jsonpatch<2.0,>=1.33: Installed. No version info available.
langchain-anthropic;: Installed. No version info available.
langchain-aws;: Installed. No version info available.
langchain-cohere;: Installed. No version info available.
langchain-community;: Installed. No version info available.
langchain-core<1.0.0,>=0.3.34: Installed. No version info available.
langchain-core<1.0.0,>=0.3.35: Installed. No version info available.
langchain-core<1.0.0,>=0.3.37: Installed. No version info available.
langchain-deepseek;: Installed. No version info available.
langchain-fireworks;: Installed. No version info available.
langchain-google-genai;: Installed. No version info available.
langchain-google-vertexai;: Installed. No version info available.
langchain-groq;: Installed. No version info available.
langchain-huggingface;: Installed. No version info available.
langchain-mistralai;: Installed. No version info available.
langchain-ollama;: Installed. No version info available.
langchain-openai;: Installed. No version info available.
langchain-text-splitters<1.0.0,>=0.3.6: Installed. No version info available.
langchain-together;: Installed. No version info available.
langchain-xai;: Installed. No version info available.
langchain<1.0.0,>=0.3.19: Installed. No version info available.
langserve[all]: Installed. No version info available.
langsmith-pyo3: Installed. No version info available.
langsmith<0.4,>=0.1.125: Installed. No version info available.
langsmith<0.4,>=0.1.17: Installed. No version info available.
numpy<2,>=1.26.4;: Installed. No version info available.
numpy<3,>=1.26.2;: Installed. No version info available.
openai<2.0.0,>=1.58.1: Installed. No version info available.
orjson: 3.10.15
packaging<25,>=23.2: Installed. No version info available.
pydantic: 2.10.6
pydantic-settings<3.0.0,>=2.4.0: Installed. No version info available.
pydantic<3.0.0,>=2.5.2;: Installed. No version info available.
pydantic<3.0.0,>=2.7.4: Installed. No version info available.
pydantic<3.0.0,>=2.7.4;: Installed. No version info available.
pytest: 8.3.4
PyYAML>=5.3: Installed. No version info available.
requests: 2.32.3
requests-toolbelt: 1.0.0
requests<3,>=2: Installed. No version info available.
rich: 13.9.4
SQLAlchemy<3,>=1.4: Installed. No version info available.
sse-starlette: 1.8.2
tenacity!=8.4.0,<10,>=8.1.0: Installed. No version info available.
tenacity!=8.4.0,<10.0.0,>=8.1.0: Installed. No version info available.
tiktoken<1,>=0.7: Installed. No version info available.
tomlkit: 0.13.2
typer[all]: Installed. No version info available.
typing-extensions>=4.7: Installed. No version info available.
uvicorn: 0.34.0
zstandard: 0.23.0

Originally created by @saurabhlalsaxena on GitHub (Feb 23, 2025). ### Checked other resources - [x] This is a bug, not a usage question. For questions, please use GitHub Discussions. - [x] I added a clear and detailed title that summarizes the issue. - [x] I read what a minimal reproducible example is (https://stackoverflow.com/help/minimal-reproducible-example). - [x] I included a self-contained, minimal example that demonstrates the issue INCLUDING all the relevant imports. The code run AS IS to reproduce the issue. ### Example Code ```python pip install -U langgraph-checkpoint-postgres DB_URI ="" #Use an existing postgres checkpointer DB from psycopg import Connection from psycopg_pool import ConnectionPool from psycopg.rows import dict_row from langgraph.checkpoint.postgres import PostgresSaver connection_kwargs ={ "autocommit": True, "prepare_threshold": 0, "row_factory": dict_row, } pool = ConnectionPool( conninfo=DB_URI, max_size=20, kwargs=connection_kwargs ) checkpointer = PostgresSaver(pool) thread_id = "1" config = {"configurable": {"thread_id": thread_id}} checkpoint = checkpointer.get(config) ``` ### Error Message and Stack Trace (if applicable) ```shell /usr/local/lib/python3.11/dist-packages/langgraph/checkpoint/base/__init__.py in get(self, config) 234 Optional[Checkpoint]: The requested checkpoint, or None if not found. 235 """ --> 236 if value := self.get_tuple(config): 237 return value.checkpoint 238 /usr/local/lib/python3.11/dist-packages/langgraph/checkpoint/postgres/__init__.py in get_tuple(self, config) 218 219 with self._cursor() as cur: --> 220 cur.execute( 221 self.SELECT_SQL + where, 222 args, /usr/local/lib/python3.11/dist-packages/psycopg/cursor.py in execute(self, query, params, prepare, binary) 95 ) 96 except e._NO_TRACEBACK as ex: ---> 97 raise ex.with_traceback(None) 98 return self 99 UndefinedColumn: column cw.task_path does not exist LINE 27: ...array_agg(array[cw.type::bytea, cw.blob] order by cw.task_pa... ``` ### Description Faced the below issue with langgraph-checkpoint-postgres: ```error UndefinedColumn: column cw.task_path does not exist LINE 27: ...array_agg(array[cw.type::bytea, cw.blob] order by cw.task_pa... ``` Tried moving to an older version of langgraph-checkpoint-postgres (version - 2.0.8) and it is working fine. **I.e. we are able to connect to the DB with langgraph-checkpoint-postgres == 2.0.8** This is an issue with a recent upgrade to the library. We have code running in production and will become a major problem for us. ### System Info System Information ------------------ > OS: Linux > OS Version: #1 SMP PREEMPT_DYNAMIC Thu Jun 27 21:05:47 UTC 2024 > Python Version: 3.11.11 (main, Dec 4 2024, 08:55:07) [GCC 11.4.0] Package Information ------------------- > langchain_core: 0.3.37 > langchain: 0.3.19 > langchain_community: 0.3.18 > langsmith: 0.3.8 > langchain_cli: 0.0.35 > langchain_openai: 0.3.6 > langchain_text_splitters: 0.3.6 > langgraph_sdk: 0.1.53 > langserve: 0.3.1 Other Dependencies ------------------ > aiohttp<4.0.0,>=3.8.3: Installed. No version info available. > async-timeout<5.0.0,>=4.0.0;: Installed. No version info available. > dataclasses-json<0.7,>=0.5.7: Installed. No version info available. > fastapi: 0.115.8 > gitpython: 3.1.44 > gritql: 0.1.5 > httpx: 0.28.1 > httpx-sse<1.0.0,>=0.4.0: Installed. No version info available. > jsonpatch<2.0,>=1.33: Installed. No version info available. > langchain-anthropic;: Installed. No version info available. > langchain-aws;: Installed. No version info available. > langchain-cohere;: Installed. No version info available. > langchain-community;: Installed. No version info available. > langchain-core<1.0.0,>=0.3.34: Installed. No version info available. > langchain-core<1.0.0,>=0.3.35: Installed. No version info available. > langchain-core<1.0.0,>=0.3.37: Installed. No version info available. > langchain-deepseek;: Installed. No version info available. > langchain-fireworks;: Installed. No version info available. > langchain-google-genai;: Installed. No version info available. > langchain-google-vertexai;: Installed. No version info available. > langchain-groq;: Installed. No version info available. > langchain-huggingface;: Installed. No version info available. > langchain-mistralai;: Installed. No version info available. > langchain-ollama;: Installed. No version info available. > langchain-openai;: Installed. No version info available. > langchain-text-splitters<1.0.0,>=0.3.6: Installed. No version info available. > langchain-together;: Installed. No version info available. > langchain-xai;: Installed. No version info available. > langchain<1.0.0,>=0.3.19: Installed. No version info available. > langserve[all]: Installed. No version info available. > langsmith-pyo3: Installed. No version info available. > langsmith<0.4,>=0.1.125: Installed. No version info available. > langsmith<0.4,>=0.1.17: Installed. No version info available. > numpy<2,>=1.26.4;: Installed. No version info available. > numpy<3,>=1.26.2;: Installed. No version info available. > openai<2.0.0,>=1.58.1: Installed. No version info available. > orjson: 3.10.15 > packaging<25,>=23.2: Installed. No version info available. > pydantic: 2.10.6 > pydantic-settings<3.0.0,>=2.4.0: Installed. No version info available. > pydantic<3.0.0,>=2.5.2;: Installed. No version info available. > pydantic<3.0.0,>=2.7.4: Installed. No version info available. > pydantic<3.0.0,>=2.7.4;: Installed. No version info available. > pytest: 8.3.4 > PyYAML>=5.3: Installed. No version info available. > requests: 2.32.3 > requests-toolbelt: 1.0.0 > requests<3,>=2: Installed. No version info available. > rich: 13.9.4 > SQLAlchemy<3,>=1.4: Installed. No version info available. > sse-starlette: 1.8.2 > tenacity!=8.4.0,<10,>=8.1.0: Installed. No version info available. > tenacity!=8.4.0,<10.0.0,>=8.1.0: Installed. No version info available. > tiktoken<1,>=0.7: Installed. No version info available. > tomlkit: 0.13.2 > typer[all]: Installed. No version info available. > typing-extensions>=4.7: Installed. No version info available. > uvicorn: 0.34.0 > zstandard: 0.23.0
yindo closed this issue 2026-02-20 17:40:17 -05:00
Author
Owner

@saurabhlalsaxena commented on GitHub (Feb 23, 2025):

Check for in between versions as well, the DB is working till langgraph-checkpoint-postgres == 2.0.11

From 2.0.12 onwards I am facing this issue.

The checkpointer DB was created using checkpointer.setup() on langgraph-checkpoint-postgres == 2.0.8

@saurabhlalsaxena commented on GitHub (Feb 23, 2025): Check for in between versions as well, the DB is working till langgraph-checkpoint-postgres == 2.0.11 From 2.0.12 onwards I am facing this issue. The checkpointer DB was created using checkpointer.setup() on langgraph-checkpoint-postgres == 2.0.8
Author
Owner

@vbarda commented on GitHub (Feb 23, 2025):

did you run .setup() again after upgrading? it’s needed to apply the migrations

@vbarda commented on GitHub (Feb 23, 2025): did you run .setup() again after upgrading? it’s needed to apply the migrations
Author
Owner

@saurabhlalsaxena commented on GitHub (Feb 23, 2025):

This is a production database, I don't want to loose the existing data. Will running .setup() preserve all the data in the DB?

@saurabhlalsaxena commented on GitHub (Feb 23, 2025): This is a production database, I don't want to loose the existing data. Will running .setup() preserve all the data in the DB?
Author
Owner

@vbarda commented on GitHub (Feb 23, 2025):

yes, .setup() doesn’t delete the data, it only applies migrations (including creating the tables if they don’t exist)

@vbarda commented on GitHub (Feb 23, 2025): yes, .setup() doesn’t delete the data, it only applies migrations (including creating the tables if they don’t exist)
Author
Owner

@shubhamnegikellton commented on GitHub (Mar 3, 2025):

I'm facing an similiar issue with PostgreSQL when using LangGraph's checkpointing functionality. The error "SSL error: bad length" suggests a handshake failure between the application and the database. Despite trying multiple versions of langgraph-checkpoint-postgres, the problem persists.

EXAMPLE CODE

from psycopg import Connection
from psycopg_pool import ConnectionPool
from psycopg.rows import dict_row
from langgraph.checkpoint.postgres import PostgresSaver

connection_kwargs = {"autocommit": True, "prepare_threshold": 0}

async with AsyncConnectionPool(conninfo=conninfo, max_size=20, kwargs=connection_kwargs) as pool:
           graph = create_react_agent(
                llm,
                build_tools,
                messages_modifier=_modify_messages,
                checkpointer=AsyncPostgresSaver(pool),  # type:ignore[arg-type]
            )

            async for event in graph.astream_events(
                {"messages": [("human", search_params.question)]},
                config={"configurable": {"thread_id": conversation_id, "recursion_limit": 20}},
                stream_mode="values",
                version="v2",
            ):

Error Message and Stack Trace (if applicable)

INSERT INTO checkpoints ( thread_id, checkpoint_ns, checkpoint_id, parent_checkpoint_id, checkpoint, metadata ) 
VALUES ( ? ) ON CONFLICT ( thread_id, checkpoint_ns, checkpoint_id ) DO 
UPDATE SET checkpoint = EXCLUDED.checkpoint, metadata = EXCLUDED.metadata

psycopg.OperationalError: sending query and params failed: SSL error: bad length
 File "/app/app/search/ai_models.py", line 315, in chat
    async for event in graph.astream_events(
  File "/app/venv/lib/python3.12/site-packages/langchain_core/runnables/base.py", line 1386, in astream_events
    async for event in event_stream:
  File "/app/venv/lib/python3.12/site-packages/langchain_core/tracers/event_stream.py", line 1012, in _astream_events_implementation_v2
    await task
  File "/app/venv/lib/python3.12/site-packages/langchain_core/tracers/event_stream.py", line 967, in consume_astream
    async for _ in event_streamer.tap_output_aiter(run_id, stream):
  File "/app/venv/lib/python3.12/site-packages/langchain_core/tracers/event_stream.py", line 203, in tap_output_aiter
    async for chunk in output:
  File "/app/venv/lib/python3.12/site-packages/langgraph/pregel/__init__.py", line 1832, in astream
    async with AsyncPregelLoop(
               ^^^^^^^^^^^^^^^^
  File "/app/venv/lib/python3.12/site-packages/langgraph/pregel/loop.py", line 1035, in __aexit__
    return await asyncio.shield(
           ^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.12/contextlib.py", line 754, in __aexit__
    raise exc_details[1]
  File "/usr/local/lib/python3.12/contextlib.py", line 737, in __aexit__
    cb_suppress = await cb(*exc_details)
                  ^^^^^^^^^^^^^^^^^^^^^^
  File "/app/venv/lib/python3.12/site-packages/langgraph/pregel/executor.py", line 200, in __aexit__
    raise exc
  File "/app/venv/lib/python3.12/site-packages/langgraph/pregel/loop.py", line 957, in _checkpointer_put_after_previous
    await cast(BaseCheckpointSaver, self.checkpointer).aput(
  File "/app/venv/lib/python3.12/site-packages/langgraph/checkpoint/postgres/aio.py", line 270, in aput
    await cur.execute(
  File "/app/venv/lib/python3.12/site-packages/ddtrace/contrib/dbapi_async.py", line 136, in execute
    return await self._trace_method(
           ^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/app/venv/lib/python3.12/site-packages/ddtrace/contrib/dbapi_async.py", line 105, in _trace_method
    return await method(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/app/venv/lib/python3.12/site-packages/psycopg/cursor_async.py", line 97, in execute
    raise ex.with_traceback(None)
psycopg.OperationalError: sending query and params failed: SSL error: bad length
SSL SYSCALL error: EOF detected

Description
Faced the below issue with langgraph-checkpoint-postgres:

psycopg.OperationalError: sending query and params failed: SSL error: bad length
SSL SYSCALL error: EOF detected

Image

NOTE:
I have tried with multiple langgraph-checkpoint-postgres i.e 2.0.11, 2.0.9, 2.0.13, 2.0.15

Package Information:
langchain = "0.3.11"
langchain-community = "0.3.11"
langchain-experimental = "0.3.3"
langchain-openai = "0.2.12"
langchain-postgres = "0.0.12"
langgraph = "0.2.58"
psycopg = { extras = ["binary"], version = "3.2.3" }
psycopg-pool = "3.2.3"
sqlalchemy = { version = "2.0.36", extras = ["asyncio"] }
sqlmodel = "0.0.22"
asyncpg = "0.30.0"
langgraph-checkpoint-postgres = "2.0.15"

@shubhamnegikellton commented on GitHub (Mar 3, 2025): I'm facing an similiar issue with PostgreSQL when using LangGraph's checkpointing functionality. The error "SSL error: bad length" suggests a handshake failure between the application and the database. Despite trying multiple versions of langgraph-checkpoint-postgres, the problem persists. **EXAMPLE CODE** ``` from psycopg import Connection from psycopg_pool import ConnectionPool from psycopg.rows import dict_row from langgraph.checkpoint.postgres import PostgresSaver connection_kwargs = {"autocommit": True, "prepare_threshold": 0} async with AsyncConnectionPool(conninfo=conninfo, max_size=20, kwargs=connection_kwargs) as pool: graph = create_react_agent( llm, build_tools, messages_modifier=_modify_messages, checkpointer=AsyncPostgresSaver(pool), # type:ignore[arg-type] ) async for event in graph.astream_events( {"messages": [("human", search_params.question)]}, config={"configurable": {"thread_id": conversation_id, "recursion_limit": 20}}, stream_mode="values", version="v2", ): ``` **Error Message and Stack Trace (if applicable)** ``` INSERT INTO checkpoints ( thread_id, checkpoint_ns, checkpoint_id, parent_checkpoint_id, checkpoint, metadata ) VALUES ( ? ) ON CONFLICT ( thread_id, checkpoint_ns, checkpoint_id ) DO UPDATE SET checkpoint = EXCLUDED.checkpoint, metadata = EXCLUDED.metadata ``` ``` psycopg.OperationalError: sending query and params failed: SSL error: bad length File "/app/app/search/ai_models.py", line 315, in chat async for event in graph.astream_events( File "/app/venv/lib/python3.12/site-packages/langchain_core/runnables/base.py", line 1386, in astream_events async for event in event_stream: File "/app/venv/lib/python3.12/site-packages/langchain_core/tracers/event_stream.py", line 1012, in _astream_events_implementation_v2 await task File "/app/venv/lib/python3.12/site-packages/langchain_core/tracers/event_stream.py", line 967, in consume_astream async for _ in event_streamer.tap_output_aiter(run_id, stream): File "/app/venv/lib/python3.12/site-packages/langchain_core/tracers/event_stream.py", line 203, in tap_output_aiter async for chunk in output: File "/app/venv/lib/python3.12/site-packages/langgraph/pregel/__init__.py", line 1832, in astream async with AsyncPregelLoop( ^^^^^^^^^^^^^^^^ File "/app/venv/lib/python3.12/site-packages/langgraph/pregel/loop.py", line 1035, in __aexit__ return await asyncio.shield( ^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/contextlib.py", line 754, in __aexit__ raise exc_details[1] File "/usr/local/lib/python3.12/contextlib.py", line 737, in __aexit__ cb_suppress = await cb(*exc_details) ^^^^^^^^^^^^^^^^^^^^^^ File "/app/venv/lib/python3.12/site-packages/langgraph/pregel/executor.py", line 200, in __aexit__ raise exc File "/app/venv/lib/python3.12/site-packages/langgraph/pregel/loop.py", line 957, in _checkpointer_put_after_previous await cast(BaseCheckpointSaver, self.checkpointer).aput( File "/app/venv/lib/python3.12/site-packages/langgraph/checkpoint/postgres/aio.py", line 270, in aput await cur.execute( File "/app/venv/lib/python3.12/site-packages/ddtrace/contrib/dbapi_async.py", line 136, in execute return await self._trace_method( ^^^^^^^^^^^^^^^^^^^^^^^^^ File "/app/venv/lib/python3.12/site-packages/ddtrace/contrib/dbapi_async.py", line 105, in _trace_method return await method(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/app/venv/lib/python3.12/site-packages/psycopg/cursor_async.py", line 97, in execute raise ex.with_traceback(None) psycopg.OperationalError: sending query and params failed: SSL error: bad length SSL SYSCALL error: EOF detected ``` **Description** Faced the below issue with langgraph-checkpoint-postgres: psycopg.OperationalError: sending query and params failed: SSL error: bad length SSL SYSCALL error: EOF detected ![Image](https://github.com/user-attachments/assets/ba3a886e-8613-490e-9747-bcc2fd689c39) **NOTE:** **I have tried with multiple langgraph-checkpoint-postgres i.e 2.0.11, 2.0.9, 2.0.13, 2.0.15** **Package Information:** langchain = "0.3.11" langchain-community = "0.3.11" langchain-experimental = "0.3.3" langchain-openai = "0.2.12" langchain-postgres = "0.0.12" langgraph = "0.2.58" psycopg = { extras = ["binary"], version = "3.2.3" } psycopg-pool = "3.2.3" sqlalchemy = { version = "2.0.36", extras = ["asyncio"] } sqlmodel = "0.0.22" asyncpg = "0.30.0" langgraph-checkpoint-postgres = "2.0.15"
Author
Owner

@vbarda commented on GitHub (Mar 4, 2025):

@shubhamnegikellton this is completely unrelated - feel free to open a new issue for that

@saurabhlalsaxena let me know if you resolved your issue, otherwise will close due to inactivity

@vbarda commented on GitHub (Mar 4, 2025): @shubhamnegikellton this is completely unrelated - feel free to open a new issue for that @saurabhlalsaxena let me know if you resolved your issue, otherwise will close due to inactivity
Author
Owner

@saurabhlalsaxena commented on GitHub (Mar 6, 2025):

Yes, we can close this. Thanks for the prompt resolution @vbarda appreciate it.

@saurabhlalsaxena commented on GitHub (Mar 6, 2025): Yes, we can close this. Thanks for the prompt resolution @vbarda appreciate it.
Author
Owner

@shubhamnegikellton commented on GitHub (Mar 6, 2025):

@vbarda thanks, i have created a new issue: https://github.com/langchain-ai/langgraph/issues/3716. please check

@shubhamnegikellton commented on GitHub (Mar 6, 2025): @vbarda thanks, i have created a new issue: https://github.com/langchain-ai/langgraph/issues/3716. please check
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraph#470