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 96fead2 commit 8fc750bCopy full SHA for 8fc750b
langgraph/checkpoint/redis/aio.py
@@ -709,7 +709,7 @@ async def alist(
709
if isinstance(checkpoint_data, dict)
710
else orjson.loads(checkpoint_data)
711
)
712
- channel_values = checkpoint_dict.get("channel_values", {})
+ channel_values = self._recursive_deserialize(checkpoint_dict.get("channel_values", {}))
713
else:
714
# If checkpoint data is missing, the document is corrupted
715
# Set empty channel values rather than attempting a fallback
0 commit comments